├── .gitignore ├── Makefile ├── README.rst ├── procs ├── __init__.py ├── chain.py └── process.py ├── runtests.py ├── tests ├── __init__.py ├── test_chain.py ├── test_data │ ├── file1 │ ├── file2 │ └── file3 ├── test_process.py └── test_run.py └── usage.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | python runtests.py -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/procs/HEAD/README.rst -------------------------------------------------------------------------------- /procs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/procs/HEAD/procs/__init__.py -------------------------------------------------------------------------------- /procs/chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/procs/HEAD/procs/chain.py -------------------------------------------------------------------------------- /procs/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/procs/HEAD/procs/process.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/procs/HEAD/runtests.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/procs/HEAD/tests/test_chain.py -------------------------------------------------------------------------------- /tests/test_data/file1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data/file3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/procs/HEAD/tests/test_process.py -------------------------------------------------------------------------------- /tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/procs/HEAD/tests/test_run.py -------------------------------------------------------------------------------- /usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennethreitz-archive/procs/HEAD/usage.py --------------------------------------------------------------------------------