Metadata-Version: 1.1
Name: py-execute
Version: 0.1.5
Summary: External process executor wrapper
Home-page: https://github.com/biicode/py-execute
Author: Julia S.Simon
Author-email: julia.simon@biicode.com
License: UNKNOWN
Download-URL: https://pypi.python.org/packages/source/p/py-execute/py-execute-0.1.tar.gz
Description: External Process Execution Wrapper
        -----------------------------------
        
        Allows you to execute external commands getting large outputs in real-time but also getting
        all the output as a return variable.
        
        
        Examples
        --------
        
            from py_execute import run_command
            ret = run_command.execute('echo "Hello World"')
                Hello World
            ret
                'Hello World
        '
        
            ret = run_command.execute('read -p "Do you like py-executor?" yn; case $yn in [yY]* ) echo "cool";; esac', user_input='y
        ')
                cool
            ret
                'cool
        '
        
Keywords: process,execute,output
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Logging
Classifier: Topic :: Terminals
Classifier: Topic :: Utilities
