quickspirit 2.1.0__tar.gz → 2.1.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.
- {quickspirit-2.1.0 → quickspirit-2.1.1}/PKG-INFO +10 -6
- {quickspirit-2.1.0 → quickspirit-2.1.1}/README.md +9 -5
- {quickspirit-2.1.0 → quickspirit-2.1.1}/pyproject.toml +1 -1
- {quickspirit-2.1.0 → quickspirit-2.1.1}/LICENSE +0 -0
- {quickspirit-2.1.0 → quickspirit-2.1.1}/quickspirit/__init__.py +0 -0
- {quickspirit-2.1.0 → quickspirit-2.1.1}/quickspirit/http_async_client.py +0 -0
- {quickspirit-2.1.0 → quickspirit-2.1.1}/quickspirit/http_async_downloader.py +0 -0
- {quickspirit-2.1.0 → quickspirit-2.1.1}/quickspirit/http_errors.py +0 -0
- {quickspirit-2.1.0 → quickspirit-2.1.1}/quickspirit/models.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: quickspirit
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.1
|
|
4
4
|
Summary: Fast, Async Network & File Downloader Client In Python
|
|
5
5
|
Home-page: https://github.com/DroidZed/QuickSpirit-Async
|
|
6
6
|
License: GPL-3.0-or-later
|
|
@@ -68,10 +68,10 @@ async def main():
|
|
|
68
68
|
if result.Error:
|
|
69
69
|
raise result.Error
|
|
70
70
|
|
|
71
|
-
|
|
72
71
|
data: dict[str, Any] = loads(result.Data)
|
|
73
72
|
|
|
74
73
|
# do whatever you need now that you have the data...
|
|
74
|
+
print(data)
|
|
75
75
|
|
|
76
76
|
|
|
77
77
|
if __name__ == "__main__":
|
|
@@ -94,17 +94,21 @@ Create a virtual env and install the dependencies in it:
|
|
|
94
94
|
```sh
|
|
95
95
|
python3 -m venv .venv && .venv/Scripts/activate
|
|
96
96
|
|
|
97
|
-
# I built the project using poetry,
|
|
98
|
-
|
|
97
|
+
# I built the project using poetry,
|
|
98
|
+
# so you may want to have that inside of your venv !
|
|
99
|
+
# No need to install it in your global python install
|
|
99
100
|
|
|
101
|
+
pip install poetry
|
|
102
|
+
poetry install --no-root
|
|
100
103
|
```
|
|
101
104
|
|
|
102
105
|
Run the tests with pytest:
|
|
103
106
|
|
|
104
107
|
```sh
|
|
105
|
-
# Here I'm using uv to run the tests, but the command should be the same for other package manager:
|
|
106
108
|
|
|
107
|
-
|
|
109
|
+
# At the root of the project:
|
|
110
|
+
|
|
111
|
+
python -m pytest -vs .
|
|
108
112
|
```
|
|
109
113
|
|
|
110
114
|
## Licensing
|
|
@@ -42,10 +42,10 @@ async def main():
|
|
|
42
42
|
if result.Error:
|
|
43
43
|
raise result.Error
|
|
44
44
|
|
|
45
|
-
|
|
46
45
|
data: dict[str, Any] = loads(result.Data)
|
|
47
46
|
|
|
48
47
|
# do whatever you need now that you have the data...
|
|
48
|
+
print(data)
|
|
49
49
|
|
|
50
50
|
|
|
51
51
|
if __name__ == "__main__":
|
|
@@ -68,17 +68,21 @@ Create a virtual env and install the dependencies in it:
|
|
|
68
68
|
```sh
|
|
69
69
|
python3 -m venv .venv && .venv/Scripts/activate
|
|
70
70
|
|
|
71
|
-
# I built the project using poetry,
|
|
72
|
-
|
|
71
|
+
# I built the project using poetry,
|
|
72
|
+
# so you may want to have that inside of your venv !
|
|
73
|
+
# No need to install it in your global python install
|
|
73
74
|
|
|
75
|
+
pip install poetry
|
|
76
|
+
poetry install --no-root
|
|
74
77
|
```
|
|
75
78
|
|
|
76
79
|
Run the tests with pytest:
|
|
77
80
|
|
|
78
81
|
```sh
|
|
79
|
-
# Here I'm using uv to run the tests, but the command should be the same for other package manager:
|
|
80
82
|
|
|
81
|
-
|
|
83
|
+
# At the root of the project:
|
|
84
|
+
|
|
85
|
+
python -m pytest -vs .
|
|
82
86
|
```
|
|
83
87
|
|
|
84
88
|
## Licensing
|
|
@@ -11,7 +11,7 @@ classifiers = [
|
|
|
11
11
|
[project]
|
|
12
12
|
name = "quickspirit"
|
|
13
13
|
description = "Fast, Async Network & File Downloader Client In Python"
|
|
14
|
-
version = "2.1.
|
|
14
|
+
version = "2.1.1"
|
|
15
15
|
dynamic = [ "classifiers" ]
|
|
16
16
|
license = { text = "GPL-3.0-or-later" }
|
|
17
17
|
readme = "README.md"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|