shellstreaming

A stream processor working with shell commands


License
Other
Install
pip install shellstreaming==0.1.1

Documentation

shellstreaming

https://travis-ci.org/laysakura/shellstreaming.png?branch=master

A stream processor working with shell commands

Tutorial

See http://packages.python.org/shellstreaming/tutorial.html

For developers

API reference

Sphinx-powered documents are available on http://packages.python.org/shellstreaming

Building and uploading documents

$ ./setup.py build_sphinx
$ browser doc/html/index.html
$ ./setup.py upload_sphinx

Testing

$ ./setup.py nosetests
$ browser htmlcov/index.html  # check coverage

Some tests depend too much on personal configuration; one needs Twitter OAuth info and another needs access to remote machine via ssh. To enable all of these tests, comment out the line starts with ignore-files in setup.cfg and run nosetests again.

Uploading packages to PyPI

$ emacs setup.py   # edit `version` string
$ emacs CHANGES.txt
$ ./setup.py sdist upload

Or use zest.releaser, a convenient tool for repeated release cycles.

Thanks