Skip to main content

Forked subprocess support for Python

Project description

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

Uploaded Source

Built Distribution

forkedsubprocess-1.0.2-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: forkedsubprocess-1.0.2.tar.gz
  • Upload date:
  • Size: 5.0 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.2.tar.gz
Algorithm Hash digest
SHA256 c33d1573ec3ad91917a0812c15cfa0aeeaadf9e56615c6945ca89daee07fdab7
MD5 de95119762161cd11868ca5f97616579
BLAKE2b-256 7bf83daa1ca03d0380662436fb909dd8cd9140617fe8217dff1f46f1494287b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: forkedsubprocess-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 5.6 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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 0e58f70f734ff7c932a1c9b7367592d70f8529c59e4b80db4519f45f48926b2e
MD5 866371ec24c6f62fdbe8ed1135e57d4e
BLAKE2b-256 6378bd8963f1f2acdd1854ed4b2c70eaa4b1b8bf2741e3a793294af62064b1f3

See more details on using hashes here.

Supported by

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