Skip to main content

Thin convenience wrappers for shelling out commands easily from python

Project description

PyPI version

python-shellout

Thin convenience wrappers for shelling out commands easily from python

Installation

In shell with enough admin rights type

$ git clone https://github.com/Chiel92/python-shellout
$ cd python-shellout
$ python3 setup.py install

Or to obtain the version from PyPI do

$ pip install pyshellout

Example Usage

from pyshellout import get

files=get(r'find . -name "*.cpp" -o -name "*.h" -print0')

for f in files.z:
    print(f)
    matches=get(r"grep -zZ 'some regex pattern' '{filename}'", filename=f)
    print(matches.z)

A more elaborate example can be found on this blog post about automatically archiving merged git branches.

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

pyshellout-0.2.8.zip (2.9 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