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
File details
Details for the file subprocess_tee-0.4.2.tar.gz
.
File metadata
- Download URL: subprocess_tee-0.4.2.tar.gz
- Upload date:
- Size: 15.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91b2b4da3aae9a7088d84acaf2ea0abee3f4fd9c0d2eae69a9b9122a71476590 |
|
MD5 | 141ae2cd087f59c1ddb09261724167f1 |
|
BLAKE2b-256 | d722991efbf35bc811dfe7edcd749253f0931d2d4838cf55176132633e1c82a7 |
Provenance
File details
Details for the file subprocess_tee-0.4.2-py3-none-any.whl
.
File metadata
- Download URL: subprocess_tee-0.4.2-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21942e976715af4a19a526918adb03a8a27a8edab959f2d075b777e3d78f532d |
|
MD5 | dde686d9ccf7c85a95623fff0d09f306 |
|
BLAKE2b-256 | 4dabe3a3be062cd544b2803760ff707dee38f0b1cb5685b2446de0ec19be28d9 |