Metadata-Version: 2.1
Name: anybinding
Version: 1.0.1
Summary: any command line program binding to python.
Home-page: https://github.com/guangrei/Anypybinding
Author: guangrei
Author-email: myawn@pm.me
License: MIT
Keywords: command binding
Platform: UNKNOWN
Description-Content-Type: text/markdown

this library can binding any command line program to pythonic way, work for python 2 and 3.

## Installation

```
pip install anybinding
```

## Example

```python
from anybinding import Bind

busybox = Bind("busybox")
output = busybox._("--help")
output = busybox.ls("-a", "/")
```

for git program please use https://github.com/guangrei/Gitpybinding

