Metadata-Version: 1.0
Name: hose
Version: 0.0.1
Summary: unix-pipeline-like stream processing in python
Home-page: https://github.com/tengu/py-hose
Author: tengu
Author-email: karasuyamatengu@gmail.com
License: LGPL
Description: The goal: pipelien equivalence
        
        Given this pipeline in unix shell:
        
           foo  | bar  | baz 
        
        we should have this in python:
        
           foo >> bar >> baz 
        
        Any segment should be easily swappable between the python and shell version.
        Command foo should be callable from python. Conversely python function that 
        implements a segment should be callable as a command.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Environment :: Console
Classifier: Programming Language :: Python
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
