kennethreitz-archive / Procs

Python, Processes, and Prana.

Programming Languages

python
139335 projects - #7 most used programming language

Procs: Python, Processes, and... Pipes

Python's Subprocess module is well designed for lower functions. Pipes is designed to encourage higher functions.

Ideas

  • Simple shelling out, allow argument seperation.
  • command timeouts
  • Process monitoring
  • programatically compose a chain of streams.
  • process call timeouts

Usage

Simple Usage::

>>> import procs

>>> c = procs.run('uptime')
>>> c.returncode
0
>>> c.ok
True
>>> print c.stdout
16:08  up  1:16, 7 users, load averages: 1.02 1.90 1.75

Advanced Usage::

>>> ls = procs.Process('ls /usr/bin')
>>> grep = procs.Process('grep python')
>>> wc = procs.Process('wc -l')
>>> chain = ls | grep | wc
>>> chain.run()
>>> print(chain.stdout)
19

>>> from procs import ProcessHandler

class MyCommmand(ProcessHandler):

    def __init__(self):
        pass

    def on_start(self):
        pass

    def on_exit(self):
        pass

    def on_crash(self):
        pass
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].