Skip to main content

Simple API for running external processes.

Project description

This is a convenience wrapper around the subprocess module.

Usage

Run a command, get the response:

>>> r = subp.run('git config', data='data to pipe in', timeout=2)

>>> r.status_code
129
>>> r.std_out
'usage: git config [options]'
>>> r.std_err
''

Pipe stuff around too:

   >>> r = subp.run('uptime | pbcopy')

   >>> r.command
   'pbcopy'
   >>> r.status_code
   0

   >>> r.history
   [<Response 'uptime'>]


Forked from: https://github.com/kennethreitz/envoy

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

subp-0.1.1.tar.gz (4.1 kB view hashes)

Uploaded Source

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