Metadata-Version: 2.0
Name: ruamel.showoutput
Version: 0.1.3
Summary: like subprocess.check_output(), but showing progress
Home-page: https://bitbucket.org/ruamel/showoutput
Author: Anthon van der Neut
Author-email: a.van.der.neut@ruamel.eu
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python

show_ouput works like check_output, but showing progress 

There is a plethora of ways of calling an external
program in Python. For longer running commands you want
to be able to see what is happening, so ``subprocess.check_output()``
is not really usable. Falling back to ``os.system()`` with 
the need to ``' '.join()``  the command is not that useful
as you don't have an exit status


``show_output()`` works like ``check_output()`` (including the
``input=`` keyword parameter), but will display the progress to
``stdout``.  The total output is returned to the caller, or passed
back in the Exceptions ``output`` attribute, raised if the return code
from the calling process is non-zero.


