Metadata-Version: 2.1
Name: shell-cmd
Version: 0.0.1
Summary: Execute shell commands
Home-page: UNKNOWN
Author: Arturo Fernandez
License: UNKNOWN
Project-URL: Code, https://github.com/bsnux/shell-cmd
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.2
Description-Content-Type: text/markdown

# shell-cmd Python package

Simple wrapper for executing shell commands using just one Python function.

## Installation

```
$ pip install shell_cmd
```

## Example

```
from shell_cmd import sh


# Printing output
print(sh("ls -l"))

# Getting output in a list
ll = sh("ls -l", True)
```

If error happens during the execution of the shell command, then `RunShellException`
custom exception is raised.



