Capture stdout/stderr and optionally release when an exception occurs.
Project description
Capture stdout/stderr and optionally release when an exception occurs.
from abduct import captured, out, err
with captured(out()) as stdout:
...
with captured(out(), err()) as (stdout, stderr):
...
@captured(out(), err())
...
Installation:
$ pip install abduct
When stdout or stderr is captured, the related sys.stdout or sys.stderr object is replaced with a StringIO object for the life of the context.
Examples
It’s often useful to capture the output of a block of code. Abduct makes this easy:
with captured(out()) as stdout:
print('hello!')
assert stdout.getvalue() == 'hello!'
Sometimes you may want to hide the output of some code unless something goes wrong. In this case, simply specify release_on_exception=True:
with captured(out(release_on_exception=True)):
print('Really important message!')
if blow_up:
raise RuntimeError()
In this case, Really important message! will be printed on stdout if the exception is raised.
If you’d like to capture the output, but still write through to stdout or stderr, use the tee=True parameter:
with captured(err(tee=True)) as stderr:
sys.stderr.write('Error!')
assert stderr.getvalue() == 'Error!'
In this case, Error! is captured and written to stderr at the same time.
Changelog
2.0.1
Added tests for the decorator usage.
2.0.0
Feature: “Create a write-through option for output.”
Backwards-incompatible change: stdout and stderr methods are now out and err respectively.
1.0.4
Fixed Travis release criteria.
1.0.3
Refactored test runner.
1.0.2
Fixed README and description.
1.0.1
Travis config now defers to tox.
Added examples to README.
1.0.0
Actual working code. Yay!
0.0.1
Initial release.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for abduct-2.0.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3d1a3dcc7e544054534a1e10c3443d8ed5cde57c9dc47da8484910c36478a3b |
|
MD5 | 6c67d72b2e1aab6a5a39c9ec7d003bbf |
|
BLAKE2b-256 | 23165e3393ab3c9c5a4c15feab2e95636409087fac077438a80fa35861c9ac5e |