A magma kernel for Jupyter, based on bash_kernel
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Markus Roth e86defd84a Allow tab completion of variables (starting with $). 11 years ago
bash_kernel Allow tab completion of variables (starting with $). 11 years ago
.gitignore Ensure that kernelspec gets into tarballs 12 years ago
MANIFEST.in Write kernelspec using sys.executable on install 12 years ago
README.rst Install with pip 11 years ago
setup.py A proposal for a quick fix to issue #15 11 years ago

README.rst

A simple IPython kernel for bash

This requires IPython 3.

To use it, install with ``pip install bash_kernel``, and then run one of:

.. code:: shell

    ipython notebook
    # In the notebook interface, select Bash from the 'New' menu
    ipython qtconsole --kernel bash
    ipython console --kernel bash

For details of how this works, see IPython's docs on `wrapper kernels
<http://ipython.org/ipython-doc/dev/development/wrapperkernels.html>`_, and
Pexpect's docs on the `replwrap module
<http://pexpect.readthedocs.org/en/latest/api/replwrap.html>`_