Metadata-Version: 2.1
Name: file-transfer-tools
Version: 0.0.1
Summary: Transfer files simply in shell
Home-page: https://github.com/wyg1997/transfer
Author: wyg1997
Author-email: wangyinggang@foxmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Transfer

Transfer files simply in shell.

upload and download powered by [https://transfer.sh/](https://transfer.sh/).

## Install

### clone and install

```shell
git clone https://github.com/wyg1997/transfer.git
cd transfer
pip install .
```

### from PyPI

TODO

## Usage

Run `transfer -h` in shell to see usage.

### upload

```shell
transfer upload <directory/file>
```

### upload with password

> NOTE: You should install GnuPG firstly.

```shell
transfer upload -e <directory/file>
" or transfer upload --encrypt <directory/file>
" and type password
```

### download

```shell
transfer download [-o <target_path>] <url>
```

### download encrypted file

```shell
transfer download -d [-o <target_path>] <url>
```
