Metadata-Version: 1.0
Name: pyshellout
Version: 0.2.5
Summary: Thin convenience wrappers for shelling out commands easily from python
Home-page: https://github.com/Chiel92/python-shellout
Author: Chiel ten Brinke
Author-email: ctenbrinke@gmail.com
License: UNKNOWN
Description: [![PyPI version](https://badge.fury.io/py/pyshellout.svg)](https://badge.fury.io/py/pyshellout)
        
        # python-shellout
        Thin convenience wrappers for shelling out commands easily from python
        
        ## Installation
        
        In shell with enough admin rights type
        
        ```bash
        $ git clone https://github.com/Chiel92/python-shellout
        $ cd python-shellout
        $ python3 setup.py install
        ```
        
        Or to obtain the version from PyPI do
        
        ```bash
        $ pip install pyshellout
        ```
        
        ## Example Usage
        
        ```python
        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.][archive-git-branches]
        
        [archive-git-branches]: http://ctenbrinke.net/2016/06/07/archiving-branches-with-git/
        
Keywords: pyshellout,shellout,shell,CLI
Platform: UNKNOWN
