subprocess-tee
Project description
subprocess-tee
This package provides an drop-in alternative to subprocess.run
that
captures the output while still printing it in real time, just the way tee
does.
Printing output in real-time while still capturing is important for any tool that executes long running child processes, as you may not want to deprive user from getting instant feedback related to what is happening.
# from subprocess import run
from subprocess_tee import run
result = run("echo 123")
result.stdout == "123\n"
Rich extension
This libary also provides an drop-in replacement for rich Console class, one
that is able to rewire both sys.stdout
and sys.stderr
and avoid the
need too replace bare print()
calls with console.print()
ones.
# from rich.console import Console
from subprocess_tee.rich import ConsoleEx
console = ConsoleEx(redirect=True, record=True)
print("123")
assert "123\n" == console.export_text()
When used in conjuction with our own run()
, this also makes it possible
to use rich to process output produced by subprocesses.
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file subprocess-tee-0.1.3.tar.gz
.
File metadata
- Download URL: subprocess-tee-0.1.3.tar.gz
- Upload date:
- Size: 13.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c47c6da612caac466cb2d849ef2859d6dccf09e899f59611ed729aa65ca4c91a |
|
MD5 | 1328db207e2eec139d98530442bb5aa7 |
|
BLAKE2b-256 | 7f2c92ecf37836ea5828cb26ce33aeb536c04e7be4a86fccaa190108817bf83c |
File details
Details for the file subprocess_tee-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: subprocess_tee-0.1.3-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/50.3.2 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51ac728467619e4d1688fc8607e3104f95e079f8c9cf046383eb7867f2b5e8cd |
|
MD5 | a5aef4a6404ec7c2520c2331974e3514 |
|
BLAKE2b-256 | 4ca9511b88bf0b01677aa4f9eabb685965de99c0e390e6ebb0fc11333b6848e4 |