• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

sarge/H24-Aug-2020-1,8811,582

LICENSEH A D24-Aug-20201.4 KiB2722

PKG-INFOH A D24-Aug-20202.5 KiB5748

README.rstH A D09-Apr-20191.4 KiB4328

echoer.pyH A D09-Apr-2019579 2617

lister.pyH A D09-Apr-20192.6 KiB8472

setup.pyH A D24-Aug-20202.9 KiB8973

stack_tracer.pyH A D09-Apr-20192.1 KiB7760

test_sarge.pyH A D24-Aug-202029 KiB785670

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