An open API service indexing awesome lists of open source software.

https://github.com/hanzhichao/hostz

host operations based on ssh
https://github.com/hanzhichao/hostz

paramiko python ssh

Last synced: 6 months ago
JSON representation

host operations based on ssh

Awesome Lists containing this project

README

          

# hostz

Easy use for operate remote host via ssh

![Languate - Python](https://img.shields.io/badge/language-python-blue.svg)
![PyPI - License](https://img.shields.io/pypi/l/hostz)
![PyPI](https://img.shields.io/pypi/v/hostz)
![PyPI - Downloads](https://img.shields.io/pypi/dm/hostz)

## Feature

## Install
```
pip install hostz
```

## Simple Use

```
from hostz import Host
host = Host('192.168.1.184', password='***', project_path='/home/hzc/')
print(host.getcwd())
print(host.run('echo hello'))
```

## Todo