pdelong42 / sh

Python process launching

Home Page:http://amoffat.github.com/sh

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Coverage Status

Version Downloads

sh (previously pbs) is a full-fledged subprocess replacement for Python 2.6 - 3.4 that allows you to call any program as if it were a function:

from sh import ifconfig
print ifconfig("eth0")

sh is not a collection of system commands implemented in Python.

Installation

$> pip install sh

Complete documentation @ http://amoffat.github.com/sh

Testing

First install the development requirements:

$> pip install -r requirements-dev.txt

Then use tox test runner:

$> tox

To run a single test for all environments:

$> tox FunctionalTests.test_unicode_arg

To run a single test for a single environment:

$> tox -e py34 FunctionalTests.test_unicode_arg

About

Python process launching

http://amoffat.github.com/sh

License:MIT License


Languages

Language:Python 100.0%