Metadata-Version: 1.0
Name: shfd
Version: 0.1
Summary: Sh for dummies
Home-page: https://github.com/morgotth/shfd
Author: Morgotth
Author-email: morgotth0@gmail.com
License: Beerware
Description: 
        Shfd : Sh for dummies
        =====================
        
        My custom wrapper for subprocess inspired by `Envoy <https://github.com/kennethreitz/envoy/>`_.
        
        Features :
        
        * full unicode support
        * pipe with python operator |
        * multi platform
        * Method chaining available
        
        Python versions supported :
        
        * 2.6
        * 2.7
        * 3.1
        * 3.2
        * 3.3
        
        Usage
        -----
        
        Run a command ::
        
        	>>> cmd = shfd.run('echo "hello world"')
        	>>> cmd.retcode
        	0
        	>>> cmd.out
        	u'hello world\n'
        	>>> cmd.err
        	u''
        
        Example with pipe and chaining ::
        
        	>>> cmd = (shfd.cmd('git log') | 'head -n 30').run()
        	>>> cmd.command
        	u'git log | head -n 30'
        	>>> cmd.out
        	u'...'
        
        Tests
        -----
        
        Test one version ::
        	python test_shfd.py
        
        Test all available versions ::
        	python test_multi_shfd.py
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: Freeware
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
