qdown 1.0.0__py3-none-any.whl → 1.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- qdown-1.0.1.dist-info/METADATA +70 -0
- qdown-1.0.1.dist-info/RECORD +8 -0
- qdown-1.0.0.dist-info/METADATA +0 -19
- qdown-1.0.0.dist-info/RECORD +0 -8
- {qdown-1.0.0.dist-info → qdown-1.0.1.dist-info}/WHEEL +0 -0
- {qdown-1.0.0.dist-info → qdown-1.0.1.dist-info}/entry_points.txt +0 -0
- {qdown-1.0.0.dist-info → qdown-1.0.1.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,70 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: qdown
|
3
|
+
Version: 1.0.1
|
4
|
+
Summary: Client for QualitegDrive
|
5
|
+
Home-page: https://github.com/qualiteg/qdown
|
6
|
+
Author: Qualiteg Inc.
|
7
|
+
Author-email: qualiteger@qualiteg.com
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
9
|
+
Classifier: Intended Audience :: Developers
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
12
|
+
Classifier: Programming Language :: Python :: 3.7
|
13
|
+
Classifier: Programming Language :: Python :: 3.8
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
16
|
+
Requires-Python: >=3.7
|
17
|
+
Description-Content-Type: text/markdown
|
18
|
+
Requires-Dist: httpx (>=0.23.0)
|
19
|
+
Requires-Dist: tqdm (>=4.64.0)
|
20
|
+
|
21
|
+
# qdown
|
22
|
+
|
23
|
+
A Python client for downloading files from QualitegDrive operated by Qualiteg Inc.
|
24
|
+
|
25
|
+
# install
|
26
|
+
|
27
|
+
```
|
28
|
+
pip install qdown
|
29
|
+
```
|
30
|
+
|
31
|
+
or
|
32
|
+
|
33
|
+
```
|
34
|
+
pip install git+https://github.com/qualiteg/qdown.git
|
35
|
+
```
|
36
|
+
|
37
|
+
# usage
|
38
|
+
|
39
|
+
```
|
40
|
+
|
41
|
+
qdown ID [options]
|
42
|
+
|
43
|
+
Options:
|
44
|
+
-O FILENAME Specify output filename
|
45
|
+
-o DIR Specify output directory
|
46
|
+
-s SERVER Specify server URL (default: https://drive.qualiteg.com)
|
47
|
+
-q, --quiet Hide progress display
|
48
|
+
-h, --help Display help
|
49
|
+
```
|
50
|
+
|
51
|
+
## download example1
|
52
|
+
|
53
|
+
```
|
54
|
+
gdown xxxxxxxxxxxxx -O my_file.txt
|
55
|
+
```
|
56
|
+
|
57
|
+
## download example2
|
58
|
+
|
59
|
+
From Your Original HTTP Server
|
60
|
+
|
61
|
+
```
|
62
|
+
gdown xxxxxxxxxxxxx -O my_file.txt -s http://host.docker.internal:3000
|
63
|
+
```
|
64
|
+
|
65
|
+
|
66
|
+
# uninstall
|
67
|
+
|
68
|
+
```
|
69
|
+
pip uninstall qdown -y
|
70
|
+
```
|
@@ -0,0 +1,8 @@
|
|
1
|
+
qdown/__init__.py,sha256=xLF9Cf0AXdryxhj3hm9gZW432d3hpGioUfTvh8zNraI,1137
|
2
|
+
qdown/gdown.py,sha256=c5RP0N7r1Z7lderibzCLDsiLkaPZ2-Gyrn0li2cHk34,6415
|
3
|
+
z_examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
+
qdown-1.0.1.dist-info/METADATA,sha256=1Vq4_bIqWX4sAHa0AGNDBl7JznY_W9LvnigtgQ-dZkg,1487
|
5
|
+
qdown-1.0.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
6
|
+
qdown-1.0.1.dist-info/entry_points.txt,sha256=oL6bqY5z0iEMyLURdbjHtvGMTdeZgqR44MtHdlOa7ZM,43
|
7
|
+
qdown-1.0.1.dist-info/top_level.txt,sha256=eVEHrbec1mx2PWv03GzKwFTbdvQqFOAps3GuveF2Ap8,17
|
8
|
+
qdown-1.0.1.dist-info/RECORD,,
|
qdown-1.0.0.dist-info/METADATA
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.1
|
2
|
-
Name: qdown
|
3
|
-
Version: 1.0.0
|
4
|
-
Summary: Client for QualitegDrive
|
5
|
-
Home-page: https://github.com/qualiteg/qdown
|
6
|
-
Author: Qualiteg Inc.
|
7
|
-
Author-email: qualiteger@qualiteg.com
|
8
|
-
Classifier: Development Status :: 3 - Alpha
|
9
|
-
Classifier: Intended Audience :: Developers
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
11
|
-
Classifier: Programming Language :: Python :: 3
|
12
|
-
Classifier: Programming Language :: Python :: 3.7
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
14
|
-
Classifier: Programming Language :: Python :: 3.9
|
15
|
-
Classifier: Programming Language :: Python :: 3.10
|
16
|
-
Requires-Python: >=3.7
|
17
|
-
Requires-Dist: httpx (>=0.23.0)
|
18
|
-
Requires-Dist: tqdm (>=4.64.0)
|
19
|
-
|
qdown-1.0.0.dist-info/RECORD
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
qdown/__init__.py,sha256=xLF9Cf0AXdryxhj3hm9gZW432d3hpGioUfTvh8zNraI,1137
|
2
|
-
qdown/gdown.py,sha256=c5RP0N7r1Z7lderibzCLDsiLkaPZ2-Gyrn0li2cHk34,6415
|
3
|
-
z_examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
qdown-1.0.0.dist-info/METADATA,sha256=YpyMamMMB3Fvzdbf6W5wTfk_fI30A45xviuTanJcLHo,682
|
5
|
-
qdown-1.0.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
6
|
-
qdown-1.0.0.dist-info/entry_points.txt,sha256=oL6bqY5z0iEMyLURdbjHtvGMTdeZgqR44MtHdlOa7ZM,43
|
7
|
-
qdown-1.0.0.dist-info/top_level.txt,sha256=eVEHrbec1mx2PWv03GzKwFTbdvQqFOAps3GuveF2Ap8,17
|
8
|
-
qdown-1.0.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|