quickspirit 1.0.0__tar.gz → 1.0.2__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.
- quickspirit-1.0.2/PKG-INFO +74 -0
- quickspirit-1.0.2/README.md +51 -0
- {quickspirit-1.0.0 → quickspirit-1.0.2}/pyproject.toml +14 -1
- quickspirit-1.0.0/PKG-INFO +0 -20
- quickspirit-1.0.0/README.md +0 -1
- /quickspirit-1.0.0/LICENSE → /quickspirit-1.0.2/LICENCE +0 -0
- {quickspirit-1.0.0 → quickspirit-1.0.2}/quick_spirit_downloader/__init__.py +0 -0
- {quickspirit-1.0.0 → quickspirit-1.0.2}/quick_spirit_downloader/downloader/__init__.py +0 -0
- {quickspirit-1.0.0 → quickspirit-1.0.2}/quick_spirit_downloader/downloader/http_async_downloader.py +0 -0
- {quickspirit-1.0.0 → quickspirit-1.0.2}/quick_spirit_downloader/tests/__init__.py +0 -0
- {quickspirit-1.0.0 → quickspirit-1.0.2}/quick_spirit_downloader/tests/test_http_downloader.py +0 -0
- {quickspirit-1.0.0 → quickspirit-1.0.2}/quick_spirit_http/__init__.py +0 -0
- {quickspirit-1.0.0 → quickspirit-1.0.2}/quick_spirit_http/http/__init__.py +0 -0
- {quickspirit-1.0.0 → quickspirit-1.0.2}/quick_spirit_http/http/http_async_client.py +0 -0
- {quickspirit-1.0.0 → quickspirit-1.0.2}/quick_spirit_http/http/http_errors.py +0 -0
- {quickspirit-1.0.0 → quickspirit-1.0.2}/quick_spirit_http/http/models.py +0 -0
- {quickspirit-1.0.0 → quickspirit-1.0.2}/quick_spirit_http/tests/__init__.py +0 -0
- {quickspirit-1.0.0 → quickspirit-1.0.2}/quick_spirit_http/tests/test_network_client.py +0 -0
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: quickspirit
|
|
3
|
+
Version: 1.0.2
|
|
4
|
+
Summary: Fast, Async Network & File Downloader Client In Python
|
|
5
|
+
License: GPL-3.0-or-later
|
|
6
|
+
Author: DroidZed
|
|
7
|
+
Author-email: 41507665+DroidZed@users.noreply.github.com
|
|
8
|
+
Requires-Python: >=3.11,<4.0
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
11
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Provides-Extra: downloader
|
|
19
|
+
Requires-Dist: aiofiles (>=24.1.0,<25.0.0) ; extra == "downloader"
|
|
20
|
+
Requires-Dist: httpx (>=0.27.0,<0.28.0)
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
|
|
23
|
+
# Quick Spirit
|
|
24
|
+
|
|
25
|
+
An easy to use HTTP client with a fast downloader.
|
|
26
|
+
|
|
27
|
+
This library was made with the famous [HTTPX](https://www.python-httpx.org/) library!
|
|
28
|
+
|
|
29
|
+
I originally intended to make a small module to refactor my networking layer in my apps using httpx, and ended up creating a library !
|
|
30
|
+
|
|
31
|
+
--
|
|
32
|
+
|
|
33
|
+
## Install
|
|
34
|
+
|
|
35
|
+
```sh
|
|
36
|
+
# PIP:
|
|
37
|
+
|
|
38
|
+
pip install quickspirit
|
|
39
|
+
|
|
40
|
+
# Poetry:
|
|
41
|
+
|
|
42
|
+
poetry add quickspirit
|
|
43
|
+
|
|
44
|
+
# UV:
|
|
45
|
+
|
|
46
|
+
uv add quickspirit
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Testing:
|
|
50
|
+
|
|
51
|
+
Clone with git:
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
git clone https://github.com/DroidZed/QuickSpirit-Async && cd QuickSpirit-Async
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Create a virtual env:
|
|
58
|
+
|
|
59
|
+
```sh
|
|
60
|
+
python3 -m venv .venv && .venv/Scripts/activate
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
Run the tests with pytest (install it first using your package manager of choice):
|
|
64
|
+
|
|
65
|
+
```sh
|
|
66
|
+
# Here I'm using uv to run the tests, but the command should be the same for other package manager:
|
|
67
|
+
|
|
68
|
+
pytest -vs .
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## License
|
|
72
|
+
|
|
73
|
+
This project is under the GPL 3.0 License. See [Corresponding file](/LICENSE)
|
|
74
|
+
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Quick Spirit
|
|
2
|
+
|
|
3
|
+
An easy to use HTTP client with a fast downloader.
|
|
4
|
+
|
|
5
|
+
This library was made with the famous [HTTPX](https://www.python-httpx.org/) library!
|
|
6
|
+
|
|
7
|
+
I originally intended to make a small module to refactor my networking layer in my apps using httpx, and ended up creating a library !
|
|
8
|
+
|
|
9
|
+
--
|
|
10
|
+
|
|
11
|
+
## Install
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
# PIP:
|
|
15
|
+
|
|
16
|
+
pip install quickspirit
|
|
17
|
+
|
|
18
|
+
# Poetry:
|
|
19
|
+
|
|
20
|
+
poetry add quickspirit
|
|
21
|
+
|
|
22
|
+
# UV:
|
|
23
|
+
|
|
24
|
+
uv add quickspirit
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Testing:
|
|
28
|
+
|
|
29
|
+
Clone with git:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
git clone https://github.com/DroidZed/QuickSpirit-Async && cd QuickSpirit-Async
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Create a virtual env:
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
python3 -m venv .venv && .venv/Scripts/activate
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Run the tests with pytest (install it first using your package manager of choice):
|
|
42
|
+
|
|
43
|
+
```sh
|
|
44
|
+
# Here I'm using uv to run the tests, but the command should be the same for other package manager:
|
|
45
|
+
|
|
46
|
+
pytest -vs .
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
This project is under the GPL 3.0 License. See [Corresponding file](/LICENSE)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "quickspirit"
|
|
3
|
-
version = "1.0.
|
|
3
|
+
version = "1.0.2"
|
|
4
4
|
description = "Fast, Async Network & File Downloader Client In Python"
|
|
5
5
|
authors = ["DroidZed <41507665+DroidZed@users.noreply.github.com>"]
|
|
6
6
|
license = "GPL-3.0-or-later"
|
|
@@ -10,6 +10,19 @@ packages = [
|
|
|
10
10
|
{ include = "quick_spirit_downloader" },
|
|
11
11
|
]
|
|
12
12
|
package-mode = true
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Intended Audience :: Developers",
|
|
15
|
+
"Operating System :: OS Independent",
|
|
16
|
+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
17
|
+
"Programming Language :: Python",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project]
|
|
21
|
+
dynamic = [ "classifiers" ]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
repository = "https://github.com/DroidZed/QuickSpirit-Async"
|
|
25
|
+
homepage = "https://github.com/DroidZed/QuickSpirit-Async"
|
|
13
26
|
|
|
14
27
|
[tool.poetry.dependencies]
|
|
15
28
|
python = "^3.11"
|
quickspirit-1.0.0/PKG-INFO
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: quickspirit
|
|
3
|
-
Version: 1.0.0
|
|
4
|
-
Summary: Fast, Async Network & File Downloader Client In Python
|
|
5
|
-
License: GPL-3.0-or-later
|
|
6
|
-
Author: DroidZed
|
|
7
|
-
Author-email: 41507665+DroidZed@users.noreply.github.com
|
|
8
|
-
Requires-Python: >=3.11,<4.0
|
|
9
|
-
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
10
|
-
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
14
|
-
Provides-Extra: downloader
|
|
15
|
-
Requires-Dist: aiofiles (>=24.1.0,<25.0.0) ; extra == "downloader"
|
|
16
|
-
Requires-Dist: httpx (>=0.27.0,<0.28.0)
|
|
17
|
-
Description-Content-Type: text/markdown
|
|
18
|
-
|
|
19
|
-
# Quick Spirit
|
|
20
|
-
|
quickspirit-1.0.0/README.md
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
# Quick Spirit
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quickspirit-1.0.0 → quickspirit-1.0.2}/quick_spirit_downloader/downloader/http_async_downloader.py
RENAMED
|
File without changes
|
|
File without changes
|
{quickspirit-1.0.0 → quickspirit-1.0.2}/quick_spirit_downloader/tests/test_http_downloader.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|