Metadata-Version: 2.1
Name: zssh
Version: 1.1.1
Summary: ZSSH - ZIP over SSH
Home-page: https://github.com/aslamanver/zssh
Author: Aslam Anver
Author-email: aslammohammedb@outlook.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.5
Description-Content-Type: text/markdown

# ZSSH - ZIP over SSH
#### Simple Python script to exchange files between servers.

[![PyPI version](https://badge.fury.io/py/zssh.svg)](https://pypi.org/project/zssh)

Login to SSH and choose which path you need to serve over HTTP.

> This script is based on Python 3+

#### Intall from PIP
```sh
python3 -m pip install zssh
```

Expose a directory to `ZIP`
```sh
$ python3 -m zssh -as --path /desktop/path_to_expose
```

Extract a `ZIP` from URL
```sh
$ python3 -m zssh -ad --path /desktop/path_to_download --zip http://mydomain.com/temp_file.zip
```

Usage
```bash
usage: zssh [-h] -a A --path PATH [--zip ZIP] [--port PORT]

required arguments:
  -a A         Action [s = serve, d = download]
  --path PATH  File/Folder Path

optional arguments:
  --zip ZIP    ZIP File URL | Name should be *.zip
  --port PORT  Server Port | Default: 9800
```


