Captures stderr/stdout as a stream to allow easy log monitoring of long running shell processes.",
Project description
Finally, a subprocess type that streams out stdout/stderr easily
Capturing the stderr AND stdout from a process in python is not that easy. This class makes this capturing much easier by delegating the line capturing to seperate threads. This capture can be totally in memory or can optionally be streamed to a output stream such as a file handle.
This class will unconditionally launch a shell command and the input will always be string, not an array like what is accepted by subprocess.Popen().
Example:
Super simple example:
from capturing_process import CapturingProcess
out_stream = StringIO()
p = CapturingProcess("echo hi", stdout=out_stream)
p.wait()
self.assertIn("hi", out_stream.getvalue())
self.assertIn("hi", p.get_stdout())
For splitting the output to stdout and a file you'd write a stream class like so:
class MyStream:
def __init__(self, filehandle) -> None:
self.fh = filehandle
def write(self, data: str) -> None:
self.fh.write(data)
sys.stdout.write(data)
with open('myfile', 'w') as fd:
out_stream = MyStream(fd)
proc = CapturingProcess("echo hi", stdout=out_stream)
proc.wait() # Output will go to file and sys.stdout
To silence an output stream (stdout/stderr) drop a StringIO object as an argument to the CapturingProcess like so:
proc = CapturingProcess("echo hi", stdout=StringIO())
proc.wait() # stdout redirected to StringIO()
If you want the entire stdout/stderr bytes
proc.get_stdout()
proc.get_stderr()
Python version: 3.6+
Because of the use of type annotations, this library is not compatible with python 2.7 However you are free to strip out these type annotations and this project should work pretty well.
Links:
Versions
- 1.0.9: stdout/stderr threads are now forcefully killed within .1 second if they don't join.
- 1.0.8: Fixes CapturingProcess.kill blocking if the stdout and stderr threads fail to join.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for capturing_process-1.0.9-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fff87de9035c1d11e4224660e6040d2ee6aa0bd82c15425165e51ec40e1c832c |
|
MD5 | b164637ce0b0d2247f4de1c0172e067b |
|
BLAKE2b-256 | 7214f6be6fca91f33c3e11a66e90d5ea5ed5ff6fab51211e142a7e4feac22adb |