Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
sarge/ | H | 24-Aug-2020 | - | 1,881 | 1,582 | |
LICENSE | H A D | 24-Aug-2020 | 1.4 KiB | 27 | 22 | |
PKG-INFO | H A D | 24-Aug-2020 | 2.5 KiB | 57 | 48 | |
README.rst | H A D | 09-Apr-2019 | 1.4 KiB | 43 | 28 | |
echoer.py | H A D | 09-Apr-2019 | 579 | 26 | 17 | |
lister.py | H A D | 09-Apr-2019 | 2.6 KiB | 84 | 72 | |
setup.py | H A D | 24-Aug-2020 | 2.9 KiB | 89 | 73 | |
stack_tracer.py | H A D | 09-Apr-2019 | 2.1 KiB | 77 | 60 | |
test_sarge.py | H A D | 24-Aug-2020 | 29 KiB | 785 | 670 |
README.rst
1.. image:: https://travis-ci.org/vsajip/sarge.svg 2 :target: https://travis-ci.org/vsajip/sarge 3 4.. image:: https://coveralls.io/repos/vsajip/sarge/badge.svg 5 :target: https://coveralls.io/github/vsajip/sarge 6 7Overview 8======== 9The sarge package provides a wrapper for subprocess which provides command 10pipeline functionality. 11 12This package leverages subprocess to provide easy-to-use cross-platform command 13pipelines with a Posix flavour: you can have chains of commands using ``;``, ``&``, 14pipes using ``|`` and ``|&``, and redirection. 15 16Requirements & Installation 17--------------------------- 18The sarge package requires Python 2.6 or greater, and can be 19installed with the standard Python installation procedure:: 20 21 python setup.py install 22 23There is a set of unit tests which you can invoke with:: 24 25 python setup.py test 26 27before running the installation. 28 29Availability & Documentation 30---------------------------- 31The latest version of sarge can be found on `BitBucket <https://bitbucket.org/vinay.sajip/sarge/>`_:: 32 33 https://bitbucket.org/vinay.sajip/sarge/ 34 35The latest documentation (kept updated between releases) is on `Read The Docs <http://sarge.readthedocs.org/>`_:: 36 37 http://sarge.readthedocs.org/ 38 39Please report any problems or suggestions for improvement either via the 40`mailing list <http://groups.google.com/group/python-sarge/>`_ or the `issue 41tracker <https://bitbucket.org/vinay.sajip/sarge/issues/new>`_. 42 43