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
- Host: GitHub
- URL: https://github.com/hanzhichao/hostz
- Owner: hanzhichao
- License: mit
- Created: 2022-07-22T02:45:55.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2023-06-22T06:28:53.000Z (about 3 years ago)
- Last Synced: 2026-01-01T10:46:10.218Z (6 months ago)
- Topics: paramiko, python, ssh
- Language: Python
- Homepage:
- Size: 205 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hostz
Easy use for operate remote host via ssh




## 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