Xonsh in TOP10 trending projects
We're listing down the top 10 trending open-source projects In Python on GitHub and the xonsh shell is one of these projects.
Xonsh (sounds like "consh") is a modern, full-featured and cross-platform python shell. The language is a superset of Python 3.6+ with additional shell primitives that you are used to from Bash and IPython. It works on all major systems including Linux, OSX, and Windows. Xonsh is meant for the daily use of experts and novices.
Install Docs Github SponsorThe xonsh as a python shell lets you easily mix Python and shell commands in a powerful and simplified approach to the command line.
The xonsh language provides the shell primitives commonly found in traditional Unix shells, including interaction with standard utilities, pipelines, and input/output streams. Read more →
cd $HOME cat /etc/passwd | grep root ls -la
The xonsh language is a superset of Python 3.6+, allowing you to execute Python code directly, install and use third-party libraries, import modules, and take advantage of the broader Python ecosystem and tooling. Read more →
2 + 2 import json j = json.loads('{"Hello": "world!", "Answer": 42}') print(j['Answer'])
Xonsh provides a unified environment where shell functionality and Python code work together naturally. Read more →
len($(curl -L https://xon.sh)) for filename in `.*`: print(filename) du -sh @(filename)
Xonsh shell session builtins allow xonsh to function as a fully featured shell, tightly integrated with the operating system and its environment. Read more →
var = 'he' + 'llo' echo @(var) > /tmp/@(var) echo @(i for i in range(42))
Xonsh is a super-charged shell that enables you to work quickly and effectively! Some of the features that help set xonsh apart are:
The language is a superset of Python 3.6+ with additional shell primitives that you are used to from Bash and IPython.
Xontributions, or xontribs, are a set of tools and conventions for extending the functionality of xonsh.
The xonsh shell creates history files with rich structure and metadata and an API for interacting with them.
Customisable tab completion, key bindings, color styles are on board by default.
Xontributions, or xontribs, are a set of tools and conventions for extending the functionality of xonsh.
Let your pipe lines from the standard output flow thru the Python code in the xonsh shell.
Get identifiers, paths, URLs and words from the previous command output and use them for the next command in the xonsh shell.
Return to the most recently used directory when starting the xonsh shell.
Argcomplete support to tab completion of python and xonsh scripts in the xonsh shell.
Some interesting publications around xonsh.
We're listing down the top 10 trending open-source projects In Python on GitHub and the xonsh shell is one of these projects.
A. Scopatz and G. Forsyth gave a two hour presentation of xonsh.