subprocess-tee
Project description
subprocess-tee
This package provides a 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 valuable for any tool that executes long-running child processes. For those, you do want to provide instant feedback (progress) related to what is happening.
# from subprocess import run
from subprocess_tee import run
result = run("echo 123")
result.stdout == "123\n"
You can add tee=False
to disable the tee functionality if you want, this
being a much shorter alternative than adding the well known
stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL
.
Keep in mind that universal_newlines=True
is implied as we expect text
processing, this being a divergence from the original subprocess.run
.
You can still use check=True
in order to make it raise CompletedProcess
exception when the result code is not zero.
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
Hashes for subprocess_tee-0.4.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21942e976715af4a19a526918adb03a8a27a8edab959f2d075b777e3d78f532d |
|
MD5 | dde686d9ccf7c85a95623fff0d09f306 |
|
BLAKE2b-256 | 4dabe3a3be062cd544b2803760ff707dee38f0b1cb5685b2446de0ec19be28d9 |