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

Uploaded Source

Built Distribution

subprocess_tee-0.3.1-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: subprocess-tee-0.3.1.tar.gz
  • Upload date:
  • Size: 14.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for subprocess-tee-0.3.1.tar.gz
Algorithm Hash digest
SHA256 518b59a4cd51573749c8f063a675ff9b4ee3370742ee1d7078c2a8b73bad2567
MD5 e0c222927d75baa527ac271d9975a0d6
BLAKE2b-256 792acc70df8ca362c39fe5ad84e9cd175f886bf65a68a697778e8a9935770e45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: subprocess_tee-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 7.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for subprocess_tee-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c7cbee649ad272ed13cb1f701e70ef17612b4df99bc809f1eae571d6565595d2
MD5 814448890ddebb95731dc28cb0042355
BLAKE2b-256 e6ace5372dbcdd348690d6bbcfe7816ad896e11255642820aa6e423f2c89489b

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