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

Uploaded Source

Built Distribution

subprocess_tee-0.3.4-py3-none-any.whl (7.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: subprocess-tee-0.3.4.tar.gz
  • Upload date:
  • Size: 16.0 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.2 CPython/3.9.7

File hashes

Hashes for subprocess-tee-0.3.4.tar.gz
Algorithm Hash digest
SHA256 cfca5e6db7aeca1b1d061fe3fca1145f467bd35aed8c3eac9e8218c011500683
MD5 e635c13fee56d2d61e63280a25fc9660
BLAKE2b-256 200aaae37d9ec3f5688b9d42d95465c9807731f23601d3cfb18da88b9bf45f50

See more details on using hashes here.

File details

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

File metadata

  • Download URL: subprocess_tee-0.3.4-py3-none-any.whl
  • Upload date:
  • Size: 7.9 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.2 CPython/3.9.7

File hashes

Hashes for subprocess_tee-0.3.4-py3-none-any.whl
Algorithm Hash digest
SHA256 5cc6ad47e826e471adac21646f3082a4d7b445560b7005c906a33f8d14f030c3
MD5 a6d55b47f45fef7f056937974d80ad86
BLAKE2b-256 bd38865baab8b53493b7b513ef5a07b169d86e837a187e06c71a41bd3293d8f7

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