Skip to main content

Sh for dummies

Project description

My custom wrapper for subprocess inspired by Envoy.

Features :

  • full unicode support

  • pipe with python operator |

  • multi platform

  • Method chaining available

Python versions supported :

  • 2.6

  • 2.7

  • 3.1

  • 3.2

  • 3.3

Usage

Run a command

>>> cmd = shfd.run('echo "hello world"')
>>> cmd.retcode
0
>>> cmd.out
u'hello world\n'
>>> cmd.err
u''

Example with pipe and chaining

>>> cmd = (shfd.cmd('git log') | 'head -n 30').run()
>>> cmd.command
u'git log | head -n 30'
>>> cmd.out
u'...'

Tests

Test one version ::

python test_shfd.py

Test all available versions ::

python test_multi_shfd.py

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

shfd-0.1.tar.gz (4.4 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