wexample-api 0.0.81__tar.gz → 0.0.83__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.
- {wexample_api-0.0.81 → wexample_api-0.0.83}/PKG-INFO +7 -7
- {wexample_api-0.0.81 → wexample_api-0.0.83}/README.md +4 -4
- {wexample_api-0.0.81 → wexample_api-0.0.83}/pyproject.toml +3 -3
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/client/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/common/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/common/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/common/abstract_gateway.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/common/http_request_payload.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/const/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/const/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/const/http.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/demo/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/demo/demo_simple_gateway.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/enums/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/enums/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/enums/http.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/errors/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/errors/gateway_authentication_error.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/errors/gateway_connexion_error.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/middleware/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/models/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/py.typed +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/tests/common/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/tests/common/test_http_request_payload.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/tests/demo/__init__.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/tests/demo/test_demo_simple_gateway.py +0 -0
- {wexample_api-0.0.81 → wexample_api-0.0.83}/tests/new_architecture/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wexample-api
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.83
|
|
4
4
|
Summary: Some python basic helpers for apis.
|
|
5
5
|
Author-Email: weeger <contact@wexample.com>
|
|
6
6
|
License: MIT
|
|
@@ -12,8 +12,8 @@ Requires-Python: >=3.10
|
|
|
12
12
|
Requires-Dist: attrs>=23.1.0
|
|
13
13
|
Requires-Dist: cattrs>=23.1.0
|
|
14
14
|
Requires-Dist: requests
|
|
15
|
-
Requires-Dist: wexample-helpers==0.0.
|
|
16
|
-
Requires-Dist: wexample-prompt==0.0.
|
|
15
|
+
Requires-Dist: wexample-helpers==0.0.88
|
|
16
|
+
Requires-Dist: wexample-prompt==0.0.97
|
|
17
17
|
Provides-Extra: dev
|
|
18
18
|
Requires-Dist: pytest; extra == "dev"
|
|
19
19
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
@@ -21,7 +21,7 @@ Description-Content-Type: text/markdown
|
|
|
21
21
|
|
|
22
22
|
# wexample-api
|
|
23
23
|
|
|
24
|
-
Version: 0.0.
|
|
24
|
+
Version: 0.0.83
|
|
25
25
|
|
|
26
26
|
Some python basic helpers for apis.
|
|
27
27
|
|
|
@@ -211,7 +211,7 @@ Free to use in both personal and commercial projects.
|
|
|
211
211
|
|
|
212
212
|
## Integration in the Suite
|
|
213
213
|
|
|
214
|
-
This package is part of the
|
|
214
|
+
This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
|
|
215
215
|
|
|
216
216
|
### Related Packages
|
|
217
217
|
|
|
@@ -230,8 +230,8 @@ Refer to each package's documentation for specific version compatibility require
|
|
|
230
230
|
- attrs: >=23.1.0
|
|
231
231
|
- cattrs: >=23.1.0
|
|
232
232
|
- requests:
|
|
233
|
-
- wexample-helpers: ==0.0.
|
|
234
|
-
- wexample-prompt: ==0.0.
|
|
233
|
+
- wexample-helpers: ==0.0.88
|
|
234
|
+
- wexample-prompt: ==0.0.97
|
|
235
235
|
|
|
236
236
|
|
|
237
237
|
# About us
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# wexample-api
|
|
2
2
|
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.83
|
|
4
4
|
|
|
5
5
|
Some python basic helpers for apis.
|
|
6
6
|
|
|
@@ -190,7 +190,7 @@ Free to use in both personal and commercial projects.
|
|
|
190
190
|
|
|
191
191
|
## Integration in the Suite
|
|
192
192
|
|
|
193
|
-
This package is part of the
|
|
193
|
+
This package is part of the Wexample Suite — a collection of high-quality, modular tools designed to work seamlessly together across multiple languages and environments.
|
|
194
194
|
|
|
195
195
|
### Related Packages
|
|
196
196
|
|
|
@@ -209,8 +209,8 @@ Refer to each package's documentation for specific version compatibility require
|
|
|
209
209
|
- attrs: >=23.1.0
|
|
210
210
|
- cattrs: >=23.1.0
|
|
211
211
|
- requests:
|
|
212
|
-
- wexample-helpers: ==0.0.
|
|
213
|
-
- wexample-prompt: ==0.0.
|
|
212
|
+
- wexample-helpers: ==0.0.88
|
|
213
|
+
- wexample-prompt: ==0.0.97
|
|
214
214
|
|
|
215
215
|
|
|
216
216
|
# About us
|
|
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "wexample-api"
|
|
9
|
-
version = "0.0.
|
|
9
|
+
version = "0.0.83"
|
|
10
10
|
description = "Some python basic helpers for apis."
|
|
11
11
|
authors = [
|
|
12
12
|
{ name = "weeger", email = "contact@wexample.com" },
|
|
@@ -21,8 +21,8 @@ dependencies = [
|
|
|
21
21
|
"attrs>=23.1.0",
|
|
22
22
|
"cattrs>=23.1.0",
|
|
23
23
|
"requests",
|
|
24
|
-
"wexample-helpers==0.0.
|
|
25
|
-
"wexample-prompt==0.0.
|
|
24
|
+
"wexample-helpers==0.0.88",
|
|
25
|
+
"wexample-prompt==0.0.97",
|
|
26
26
|
]
|
|
27
27
|
|
|
28
28
|
[project.readme]
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/errors/gateway_authentication_error.py
RENAMED
|
File without changes
|
{wexample_api-0.0.81 → wexample_api-0.0.83}/src/wexample_api/errors/gateway_connexion_error.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
|
|
File without changes
|