quickspirit 1.0.0__py3-none-any.whl → 1.0.2__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.
@@ -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
+
@@ -10,7 +10,7 @@ quick_spirit_http/http/http_errors.py,sha256=_Hsj_OAfllFjZkW5NjN9c4Qw8zsSg5M4eOn
10
10
  quick_spirit_http/http/models.py,sha256=nQGsnaerR1DIUoIdjNFSoLQUc16QMJVXnBa9qTDEKIo,188
11
11
  quick_spirit_http/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
12
  quick_spirit_http/tests/test_network_client.py,sha256=od4i3PYwjCbrXbXrFy521MRnWqa_jcrzrJ_fomh4eYE,1437
13
- quickspirit-1.0.0.dist-info/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
14
- quickspirit-1.0.0.dist-info/METADATA,sha256=Vxupkt51I4NXr4y_mq5Qdo2izrwU0T3zp0nudTd9UQw,727
15
- quickspirit-1.0.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
16
- quickspirit-1.0.0.dist-info/RECORD,,
13
+ quickspirit-1.0.2.dist-info/LICENCE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
14
+ quickspirit-1.0.2.dist-info/METADATA,sha256=dBERBkWWxQEGhHGyhbdeadK8Nclaxgy7bYx2eXrFc0g,1839
15
+ quickspirit-1.0.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
16
+ quickspirit-1.0.2.dist-info/RECORD,,
@@ -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
-