Skip to content

jpetrucciani/bash.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

7b7939f · Oct 25, 2019

History

24 Commits
Apr 23, 2019
Jul 19, 2019
Jul 19, 2019
Apr 23, 2019
Apr 23, 2019
Apr 23, 2019
Oct 25, 2019
Jul 19, 2019
Jul 19, 2019
Sep 14, 2019
Jul 19, 2019
Jul 19, 2019

Repository files navigation

image PyPI version Code style: black Python 3.6+ supported

An inline Bash script runner, for Python.

Example Usage

>>> import bash

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

>>> proc = _
>>> proc.output
'hi\n'

>>> proc.return_code
0

Installation

$ pipenv install bash.py