Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

subprocess-tee-0.3.5.tar.gz (16.9 kB view details)

Uploaded Source

Built Distribution

subprocess_tee-0.3.5-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file subprocess-tee-0.3.5.tar.gz.

File metadata

  • Download URL: subprocess-tee-0.3.5.tar.gz
  • Upload date:
  • Size: 16.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for subprocess-tee-0.3.5.tar.gz
Algorithm Hash digest
SHA256 ff5cced589a4b8ac973276ca1ba21bb6e3de600cde11a69947ff51f696efd577
MD5 85889ca58530f930a511ba00173c8754
BLAKE2b-256 4820a38a078b58532bd44c4c189c85cc650268d1894a1dcc7080b6e7e9cfe7bb

See more details on using hashes here.

File details

Details for the file subprocess_tee-0.3.5-py3-none-any.whl.

File metadata

  • Download URL: subprocess_tee-0.3.5-py3-none-any.whl
  • Upload date:
  • Size: 8.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for subprocess_tee-0.3.5-py3-none-any.whl
Algorithm Hash digest
SHA256 d34186c639aa7f8013b5dfba80e17f52589539137c9d9205f2ae1c1bd03549e1
MD5 df8930d7afd0737113865e28085b8e3a
BLAKE2b-256 e284abba342f83e53972eee904ed78f1562acc7152a932f25b5196fceea54a19

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page