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.4.0.tar.gz (12.8 kB view details)

Uploaded Source

Built Distribution

subprocess_tee-0.4.0-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: subprocess-tee-0.4.0.tar.gz
  • Upload date:
  • Size: 12.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for subprocess-tee-0.4.0.tar.gz
Algorithm Hash digest
SHA256 7ea885ff32cdb2b2d3b2a6c464492f2ee1ebbf324e50598d75de4f6f3ea0f149
MD5 264a5c4365ae7d877160660cfba513dc
BLAKE2b-256 761b653bc93bf15738ab2fe83a875d28354cbe7402b12e22801d35e5461fe3f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for subprocess_tee-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dae5fba2640b45442a84b23f887aadfbe3f9addcca8320f5f99acb8d5c36b77e
MD5 dac13c0cd1ea6dccd7b5ad0834d4bbff
BLAKE2b-256 5669da7c783673c63895c94cba3413ad8685c30e64328970b733646d08b780b3

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