qdown 1.0.0__tar.gz → 1.0.1__tar.gz
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/PKG-INFO +68 -0
- qdown-1.0.1/qdown.egg-info/PKG-INFO +68 -0
- {qdown-1.0.0 → qdown-1.0.1}/setup.py +9 -2
- qdown-1.0.0/PKG-INFO +0 -16
- qdown-1.0.0/qdown.egg-info/PKG-INFO +0 -16
- {qdown-1.0.0 → qdown-1.0.1}/MANIFEST.in +0 -0
- {qdown-1.0.0 → qdown-1.0.1}/README.md +0 -0
- {qdown-1.0.0 → qdown-1.0.1}/qdown/__init__.py +0 -0
- {qdown-1.0.0 → qdown-1.0.1}/qdown/gdown.py +0 -0
- {qdown-1.0.0 → qdown-1.0.1}/qdown.egg-info/SOURCES.txt +0 -0
- {qdown-1.0.0 → qdown-1.0.1}/qdown.egg-info/dependency_links.txt +0 -0
- {qdown-1.0.0 → qdown-1.0.1}/qdown.egg-info/entry_points.txt +0 -0
- {qdown-1.0.0 → qdown-1.0.1}/qdown.egg-info/requires.txt +0 -0
- {qdown-1.0.0 → qdown-1.0.1}/qdown.egg-info/top_level.txt +0 -0
- {qdown-1.0.0 → qdown-1.0.1}/setup.cfg +0 -0
- {qdown-1.0.0 → qdown-1.0.1}/z_examples/__init__.py +0 -0
qdown-1.0.1/PKG-INFO
ADDED
@@ -0,0 +1,68 @@
|
|
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
|
+
|
19
|
+
# qdown
|
20
|
+
|
21
|
+
A Python client for downloading files from QualitegDrive operated by Qualiteg Inc.
|
22
|
+
|
23
|
+
# install
|
24
|
+
|
25
|
+
```
|
26
|
+
pip install qdown
|
27
|
+
```
|
28
|
+
|
29
|
+
or
|
30
|
+
|
31
|
+
```
|
32
|
+
pip install git+https://github.com/qualiteg/qdown.git
|
33
|
+
```
|
34
|
+
|
35
|
+
# usage
|
36
|
+
|
37
|
+
```
|
38
|
+
|
39
|
+
qdown ID [options]
|
40
|
+
|
41
|
+
Options:
|
42
|
+
-O FILENAME Specify output filename
|
43
|
+
-o DIR Specify output directory
|
44
|
+
-s SERVER Specify server URL (default: https://drive.qualiteg.com)
|
45
|
+
-q, --quiet Hide progress display
|
46
|
+
-h, --help Display help
|
47
|
+
```
|
48
|
+
|
49
|
+
## download example1
|
50
|
+
|
51
|
+
```
|
52
|
+
gdown xxxxxxxxxxxxx -O my_file.txt
|
53
|
+
```
|
54
|
+
|
55
|
+
## download example2
|
56
|
+
|
57
|
+
From Your Original HTTP Server
|
58
|
+
|
59
|
+
```
|
60
|
+
gdown xxxxxxxxxxxxx -O my_file.txt -s http://host.docker.internal:3000
|
61
|
+
```
|
62
|
+
|
63
|
+
|
64
|
+
# uninstall
|
65
|
+
|
66
|
+
```
|
67
|
+
pip uninstall qdown -y
|
68
|
+
```
|
@@ -0,0 +1,68 @@
|
|
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
|
+
|
19
|
+
# qdown
|
20
|
+
|
21
|
+
A Python client for downloading files from QualitegDrive operated by Qualiteg Inc.
|
22
|
+
|
23
|
+
# install
|
24
|
+
|
25
|
+
```
|
26
|
+
pip install qdown
|
27
|
+
```
|
28
|
+
|
29
|
+
or
|
30
|
+
|
31
|
+
```
|
32
|
+
pip install git+https://github.com/qualiteg/qdown.git
|
33
|
+
```
|
34
|
+
|
35
|
+
# usage
|
36
|
+
|
37
|
+
```
|
38
|
+
|
39
|
+
qdown ID [options]
|
40
|
+
|
41
|
+
Options:
|
42
|
+
-O FILENAME Specify output filename
|
43
|
+
-o DIR Specify output directory
|
44
|
+
-s SERVER Specify server URL (default: https://drive.qualiteg.com)
|
45
|
+
-q, --quiet Hide progress display
|
46
|
+
-h, --help Display help
|
47
|
+
```
|
48
|
+
|
49
|
+
## download example1
|
50
|
+
|
51
|
+
```
|
52
|
+
gdown xxxxxxxxxxxxx -O my_file.txt
|
53
|
+
```
|
54
|
+
|
55
|
+
## download example2
|
56
|
+
|
57
|
+
From Your Original HTTP Server
|
58
|
+
|
59
|
+
```
|
60
|
+
gdown xxxxxxxxxxxxx -O my_file.txt -s http://host.docker.internal:3000
|
61
|
+
```
|
62
|
+
|
63
|
+
|
64
|
+
# uninstall
|
65
|
+
|
66
|
+
```
|
67
|
+
pip uninstall qdown -y
|
68
|
+
```
|
@@ -2,11 +2,18 @@
|
|
2
2
|
# -*- coding: utf-8 -*-
|
3
3
|
|
4
4
|
from setuptools import setup, find_packages
|
5
|
+
import os
|
6
|
+
|
7
|
+
# README.mdの内容を読み込む
|
8
|
+
with open("README.md", "r", encoding="utf-8") as fh:
|
9
|
+
long_description = fh.read()
|
5
10
|
|
6
11
|
setup(
|
7
12
|
name="qdown",
|
8
|
-
version="1.0.
|
13
|
+
version="1.0.1",
|
9
14
|
description="Client for QualitegDrive",
|
15
|
+
long_description=long_description,
|
16
|
+
long_description_content_type="text/markdown", # これが重要
|
10
17
|
author="Qualiteg Inc.",
|
11
18
|
author_email="qualiteger@qualiteg.com",
|
12
19
|
url="https://github.com/qualiteg/qdown",
|
@@ -17,7 +24,7 @@ setup(
|
|
17
24
|
],
|
18
25
|
entry_points={
|
19
26
|
"console_scripts": [
|
20
|
-
"qdown=qdown.gdown:main",
|
27
|
+
"qdown=qdown.gdown:main",
|
21
28
|
],
|
22
29
|
},
|
23
30
|
classifiers=[
|
qdown-1.0.0/PKG-INFO
DELETED
@@ -1,16 +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
|
@@ -1,16 +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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|