wexample-api 0.0.85__tar.gz → 0.0.86__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.85 → wexample_api-0.0.86}/PKG-INFO +4 -4
- {wexample_api-0.0.85 → wexample_api-0.0.86}/README.md +2 -2
- {wexample_api-0.0.85 → wexample_api-0.0.86}/pyproject.toml +2 -2
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/common/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/common/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/common/abstract_gateway.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/common/http_request_payload.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/const/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/const/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/const/http.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/demo/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/demo/demo_simple_gateway.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/enums/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/enums/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/enums/http.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/errors/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/errors/gateway_authentication_error.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/errors/gateway_connexion_error.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/middleware/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/models/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/src/wexample_api/py.typed +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/tests/common/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/tests/common/test_http_request_payload.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/tests/demo/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/tests/demo/test_demo_simple_gateway.py +0 -0
- {wexample_api-0.0.85 → wexample_api-0.0.86}/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.86
|
|
4
4
|
Summary: Some python basic helpers for apis.
|
|
5
5
|
Author-Email: weeger <contact@wexample.com>
|
|
6
6
|
License: MIT
|
|
@@ -12,7 +12,7 @@ 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.
|
|
15
|
+
Requires-Dist: wexample-helpers>=1.0.0
|
|
16
16
|
Requires-Dist: wexample-prompt>=1.0.0
|
|
17
17
|
Provides-Extra: dev
|
|
18
18
|
Requires-Dist: pytest; extra == "dev"
|
|
@@ -21,7 +21,7 @@ Description-Content-Type: text/markdown
|
|
|
21
21
|
|
|
22
22
|
# api
|
|
23
23
|
|
|
24
|
-
Version: 0.0.
|
|
24
|
+
Version: 0.0.86
|
|
25
25
|
|
|
26
26
|
Some python basic helpers for apis.
|
|
27
27
|
|
|
@@ -103,7 +103,7 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
|
|
|
103
103
|
- attrs: >=23.1.0
|
|
104
104
|
- cattrs: >=23.1.0
|
|
105
105
|
- requests:
|
|
106
|
-
- wexample-helpers: >=0.
|
|
106
|
+
- wexample-helpers: >=1.0.0
|
|
107
107
|
- wexample-prompt: >=1.0.0
|
|
108
108
|
|
|
109
109
|
## Versioning & Compatibility Policy
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# api
|
|
2
2
|
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.86
|
|
4
4
|
|
|
5
5
|
Some python basic helpers for apis.
|
|
6
6
|
|
|
@@ -82,7 +82,7 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
|
|
|
82
82
|
- attrs: >=23.1.0
|
|
83
83
|
- cattrs: >=23.1.0
|
|
84
84
|
- requests:
|
|
85
|
-
- wexample-helpers: >=0.
|
|
85
|
+
- wexample-helpers: >=1.0.0
|
|
86
86
|
- wexample-prompt: >=1.0.0
|
|
87
87
|
|
|
88
88
|
## Versioning & Compatibility Policy
|
|
@@ -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.86"
|
|
10
10
|
description = "Some python basic helpers for apis."
|
|
11
11
|
authors = [
|
|
12
12
|
{ name = "weeger", email = "contact@wexample.com" },
|
|
@@ -21,7 +21,7 @@ dependencies = [
|
|
|
21
21
|
"attrs>=23.1.0",
|
|
22
22
|
"cattrs>=23.1.0",
|
|
23
23
|
"requests",
|
|
24
|
-
"wexample-helpers>=0.
|
|
24
|
+
"wexample-helpers>=1.0.0",
|
|
25
25
|
"wexample-prompt>=1.0.0",
|
|
26
26
|
]
|
|
27
27
|
|
|
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.85 → wexample_api-0.0.86}/src/wexample_api/errors/gateway_authentication_error.py
RENAMED
|
File without changes
|
{wexample_api-0.0.85 → wexample_api-0.0.86}/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
|