Skip to main content

Forked subprocess support for Python

Project description

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.

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

forkedsubprocess-1.0.3.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

forkedsubprocess-1.0.3-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file forkedsubprocess-1.0.3.tar.gz.

File metadata

  • Download URL: forkedsubprocess-1.0.3.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using 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

File hashes

Hashes for forkedsubprocess-1.0.3.tar.gz
Algorithm Hash digest
SHA256 e60072c30d8fcefdf30f6a02fd4e202a1cae3681bf3bb56d31c4875c73662753
MD5 ac30f326d50d944af934990b3d0e4776
BLAKE2b-256 7c79081b129a4fd8f852277084a42ec4d6fd81b78835d5ecdd2e2e5d6a63dbbc

See more details on using hashes here.

File details

Details for the file forkedsubprocess-1.0.3-py3-none-any.whl.

File metadata

  • Download URL: forkedsubprocess-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 5.7 kB
  • Tags: Python 3
  • Uploaded using 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

File hashes

Hashes for forkedsubprocess-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 6f45250724402f1bdc940ac4f6bf23934a5330e3a8b3290f8a1d37c4649ad14d
MD5 3aa5b35458cc0901d1791f9c32c5bb39
BLAKE2b-256 8a20a4369bc6704c0a7381ad161ebf109f4a3039007be093acefe0caa041b3c9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page