Another pythonic shell: https://marceltheshell.org. Unlike Xonsh, marcel provides a strict separation between shell syntax and Python syntax. Specifically, some shell commands take Python functions as arguments. E.g., in the current directory, find all the .c and .h files, and count lines:

    ls -fr \
    | select (f: f.suffix in ('.c', '.h')) \
    | map (f: f.read().count('\n')) \
    | red +
- List only files (-f) recursively (-r).

- Select those whose suffix is .c or .h.

- Map qualifying files to the count of \n in the file.

- Reduce those counts to a total using +.

The parentheses delimit Python functions (marcel permits omission of "lambda").

It's a good tone to show an affiliation to the project, when you introduce it.

judging by the nickname and github url it's yours https://github.com/geophile/marcel