Skip to main content

pipeline status coverage report

Forked subprocess support for Python

This package allows for the running of a subprocess in the background, including the sending of data to the subprocess and receiving of data from it. Threads are used to achieve the reading/writing of data.

Basic usage

from forkedsubprocess import ForkedSubprocess

process = ForkedSubprocess(['cat'])
process.run()
process.send('some string')
returncode = process.wait()

stdout = process.stdout
stderr = process.stderr
output = process.output

Writing output to console

Output can be written to the console at the same time using enable_output=True.

from forkedsubprocess import ForkedSubprocess

process = ForkedSubprocess(['cat'], enable_output=True)
process.run()
process.send('some string')
returncode = process.wait()

stdout = process.stdout
stderr = process.stderr
output = process.output

Using a callback

A callback can be used for each line of output received.

from forkedsubprocess import ForkedSubprocess

def my_callback(line: str):
	print(f'LINE: {line}')

process = ForkedSubprocess(['cat'], output_callback=my_callback)
process.run()
process.send('some string')
returncode = process.wait()

stdout = process.stdout
stderr = process.stderr
output = process.output

License

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Release files for forkedsubprocess 1.0.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for forkedsubprocess 1.0.3
File Size Uploaded
forkedsubprocess-1.0.3.tar.gz 5.1 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for forkedsubprocess 1.0.3
File Interpreter ABI Platform
forkedsubprocess-1.0.3-py3-none-any.whl Python 3 none any Details

Total release size: 10.8 kB

Release files / forkedsubprocess-1.0.3.tar.gz

Download URL forkedsubprocess-1.0.3.tar.gz
Size 5.1 kB
Tags Source
SHA-256 checksum
How to use checksums
e60072c30d8fcefdf30f6a02fd4e202a1cae3681bf3bb56d31c4875c73662753
BLAKE2b-256 checksum
How to use checksums
7c79081b129a4fd8f852277084a42ec4d6fd81b78835d5ecdd2e2e5d6a63dbbc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.4

Release files / forkedsubprocess-1.0.3-py3-none-any.whl

Download URL forkedsubprocess-1.0.3-py3-none-any.whl
Size 5.7 kB
Tags Python 3
SHA-256 checksum
How to use checksums
6f45250724402f1bdc940ac4f6bf23934a5330e3a8b3290f8a1d37c4649ad14d
BLAKE2b-256 checksum
How to use checksums
8a20a4369bc6704c0a7381ad161ebf109f4a3039007be093acefe0caa041b3c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.4

Release history Release notifications | RSS feed

This release

1.0.3 This release

2 release files

1.0.2

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page