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

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for subprocess-tee-0.4.1.tar.gz
Algorithm Hash digest
SHA256 b3c124993f8b88d1eb1c2fde0bc2069787eac720ba88771cba17e8c93324825d
MD5 b1c4db50bf9bb1182ef92deeac9a35a9
BLAKE2b-256 f6a0acafd85c7c0aead293a16a70a49aba20ba2af9478771370b2897eae6059c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for subprocess_tee-0.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 eca56973a1c1237093c2055b2731bcaab784683b83f22c76f26e4c5763402e28
MD5 255382cf0f8a3640506afa8af1ce8503
BLAKE2b-256 df052ab0eca1a36a1a3d14657ccd069660636de53d7ce58050568f3bcd2e0f12

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