Metadata-Version: 2.1
Name: bash.py
Version: 0.0.1
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")


