Metadata-Version: 2.1
Name: bash.py
Version: 0.3.0
Summary: An inline Bash script runner, for Python.
Home-page: https://github.com/kennethreitz/bash.py
Author: Kenneth Reitz
Author-email: me@kennethreitz.org
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6.0
Description-Content-Type: text/markdown
Requires-Dist: delegator.py


# bash.py
## An inline Bash script runner, for Python.

### Example Usage

```pycon
>>> import bash

>>> bash.run("echo hi")
<BashProcess pid=24108 return_code=0>

>>> _.output
'hi\n'
```

### Installation

```shell
$ pipenv install bash.py
```


