Metadata-Version: 2.1
Name: wurlitzer
Version: 1.0.2
Summary: Capture C-level output in context managers
Home-page: https://github.com/minrk/wurlitzer
Author: Min RK
Author-email: benjaminrk@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3


Context managers for capturing C-level output::

    from wurlitzer import pipes

    with pipes() as (stdout, stderr):
        call_c_function()
    out = stdout.read()
    err = stderr.read()


