Metadata-Version: 2.1
Name: pyexe
Version: 0.1.1
Summary: Python package to execute local and remote commands
Home-page: https://github.com/shivampip/pyexe
Author: You
Author-email: shivam301296@gmail.com
License: Apache License 2.0
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: fancybox
Requires-Dist: termcolor
Requires-Dist: fabric

# pyexe

Python package to execute commands on local and remote server.

### Installation

```
pip install pyexe
```

### Uses

#### Local

```
from pyexe import Local

lc= Local()
lc.exe("git status")
```

#### Remote

```
from pyexe import Remote

rm= Remote("1.1.1.1", "root", "password")
rm.connect()
rm.exe("ls")
```


