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

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: subprocess-tee-0.3.2.tar.gz
  • Upload date:
  • Size: 15.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for subprocess-tee-0.3.2.tar.gz
Algorithm Hash digest
SHA256 62de360f2014dff831ac6dfb4fedca9c0c0d83bf20c2ac58dac894ca2afa6005
MD5 2c971a69fa52fe5894f5f7b1a0a93439
BLAKE2b-256 3da63cb11b15c3f5abc8f5159272a4db0f60492570e9b4eefbad3d36876ea40a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: subprocess_tee-0.3.2-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/4.5.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.5

File hashes

Hashes for subprocess_tee-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 1a235f40d683cab5172a9cb3e93e25a93f3f2278a61b031a68f32c3af45d8137
MD5 41901582b78c3b70369d28d8c6fc4fa4
BLAKE2b-256 a78ffa9af793d050eea3e2ee01a97e41bf5df905511a3c5ab81f5a019ce15436

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