Metadata-Version: 2.1
Name: qdown
Version: 1.0.5
Summary: Client for QualitegDrive
Home-page: https://github.com/qualiteg/qdown
Author: Qualiteg Inc.
Author-email: qualiteger@qualiteg.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: httpx (>=0.23.0)
Requires-Dist: tqdm (>=4.64.0)

# qdown

A Python client for downloading files from QualitegDrive operated by Qualiteg Inc.

[Japanese](README.ja.md)

# install

```
pip install qdown
```

or 

```
pip install git+https://github.com/qualiteg/qdown.git
```

# usage

```

qdown ID [options]

Options:
-O FILENAME     Specify output filename
-o DIR          Specify output directory
-s SERVER       Specify server URL (default: https://drive.qualiteg.com)
-q, --quiet     Hide progress display
-h, --help      Display help
```

## download example1

```
qdown xxxxxxxxxxxxx -O my_file.txt
```

## download example2

From Your Original HTTP Server

```
qdown xxxxxxxxxxxxx -O my_file.txt -s http://host.docker.internal:3000 
```


# uninstall

```
pip uninstall qdown -y
```
