A new, modern Unix shell implemented in pure Python with Flask-like configuration and extensibility
Project description
A new Unix shell implemented in Python
Dish is a new Unix shell implemented in Python with Flask-like configuration and extensibility. It is currently in alpha stage of development. It works by having a Python script called "dish" somewhere in PATH
. This script looks a bit like a single-file Flask application. Here is an example:
#!/usr/bin/env python3
from dish import Dish
dish = Dish()
# ansicolor color to be used in PS1 prompt
from dish.ext import ansicolor
dish.register_extension(ansicolor)
dish.config['PS1'] = '<color fg="pink">$</color> '
if __name__ == '__main__':
dish.run()
Installation
Currently, it's not possible to install with Pip yet. To install the master branch:
$ git clone https://github.com/dullbananas/dish.git
$ cd dish
$ python3 setup.py install --user
Project Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
dish-0.0.0-py3-none-any.whl
(6.9 kB
view hashes)