Xonsh is Python with added shell syntax thrown in. This makes it an ideal, intuitve way to interact with your computer. You probably already know Python, and so xonsh allows you to run command line applications with out needing to learn a new, arcane syntax when ever you want to use a for-statement.
Xonsh is open source software under the BSD-2-Clause license.
Learn MoreXonsh is a super-charged shell that enables you to work quickly and effectively! Some of the features that help set xonsh apart are:
xontribs
)!We believe that the terminal should be accessible to all! In addition to being a more approachable language than other shells, xonsh also strives to be a welcoming and accepting community of developers & users. Please drop us a line at:
Xonsh can be installed with most package managers, including:
pip install xonsh
)conda install -c conda-forge xonsh
)apt install xonsh
)brew install xonsh
)Xonsh can also be customized to meet your needs!
More InformationXonsh solves the problem that other shells don’t “fit your brain.” A shell that doesn’t fit your brain can only be a liability.
While many other alternative shells have an amazing suite of features as well as much improved syntax of traditional options, none of them are quite as beautiful as Python. In xonsh, you get the best of all possible worlds.
Two reasons. The first is that typing "!" before every subprocess command is extremely tedious. The second is that tab completion of subprocess commands after an "!" does not work. These are deal breakers for day-to-day use.
We use PLY to tokenize and parse xonsh code. From our parser, we construct an abstract syntax tree (AST) only using nodes found in the Python ast standard library module. This allows us to compile and execute the AST using the normal Python tools.
Yes. But the point of xonsh is that even though it uses context-sensitive parsing it is ultimately a lot less gross than other shell languages, such as Bash.
Yes! Xonsh is freely usable and accessible under the BSD-2-Clause license.