wexample-api 0.0.85__tar.gz → 6.0.25__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-6.0.25}/PKG-INFO +9 -6
- {wexample_api-0.0.85 → wexample_api-6.0.25}/README.md +6 -3
- {wexample_api-0.0.85 → wexample_api-6.0.25}/pyproject.toml +3 -3
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/common/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/common/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/common/abstract_gateway.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/common/http_request_payload.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/const/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/const/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/const/http.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/demo/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/demo/demo_simple_gateway.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/enums/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/enums/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/enums/http.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/errors/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/errors/gateway_authentication_error.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/errors/gateway_connexion_error.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/middleware/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/models/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/py.typed +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/tests/common/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/tests/common/test_http_request_payload.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/tests/demo/__init__.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/tests/demo/test_demo_simple_gateway.py +0 -0
- {wexample_api-0.0.85 → wexample_api-6.0.25}/tests/new_architecture/__init__.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: wexample-api
|
|
3
|
-
Version:
|
|
3
|
+
Version: 6.0.25
|
|
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>=
|
|
16
|
-
Requires-Dist: wexample-prompt>=
|
|
15
|
+
Requires-Dist: wexample-helpers>=6.7.0
|
|
16
|
+
Requires-Dist: wexample-prompt>=2.0.0
|
|
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
|
# api
|
|
23
23
|
|
|
24
|
-
Version:
|
|
24
|
+
Version: 6.0.25
|
|
25
25
|
|
|
26
26
|
Some python basic helpers for apis.
|
|
27
27
|
|
|
@@ -34,6 +34,7 @@ Some python basic helpers for apis.
|
|
|
34
34
|
- [License](#license)
|
|
35
35
|
- [Suite Integration](#suite-integration)
|
|
36
36
|
- [Suite Signature](#suite-signature)
|
|
37
|
+
- [Introduction](#introduction)
|
|
37
38
|
- [Roadmap](#roadmap)
|
|
38
39
|
- [Status Compatibility](#status-compatibility)
|
|
39
40
|
- [Useful Links](#useful-links)
|
|
@@ -103,8 +104,8 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
|
|
|
103
104
|
- attrs: >=23.1.0
|
|
104
105
|
- cattrs: >=23.1.0
|
|
105
106
|
- requests:
|
|
106
|
-
- wexample-helpers: >=
|
|
107
|
-
- wexample-prompt: >=
|
|
107
|
+
- wexample-helpers: >=6.7.0
|
|
108
|
+
- wexample-prompt: >=2.0.0
|
|
108
109
|
|
|
109
110
|
## Versioning & Compatibility Policy
|
|
110
111
|
|
|
@@ -140,6 +141,8 @@ This packages suite embodies this spirit. Trusted by professionals and enthusias
|
|
|
140
141
|
|
|
141
142
|
Wexample cultivates a culture of mastery. Each package, each contribution carries the mark of a community that values precision, ethics, and innovation — a community proud to shape the future of digital craftsmanship.
|
|
142
143
|
|
|
144
|
+
A Python toolkit for building and consuming structured APIs.
|
|
145
|
+
|
|
143
146
|
## Known Limitations & Roadmap
|
|
144
147
|
|
|
145
148
|
Current limitations and planned features are tracked in the GitHub issues.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# api
|
|
2
2
|
|
|
3
|
-
Version:
|
|
3
|
+
Version: 6.0.25
|
|
4
4
|
|
|
5
5
|
Some python basic helpers for apis.
|
|
6
6
|
|
|
@@ -13,6 +13,7 @@ Some python basic helpers for apis.
|
|
|
13
13
|
- [License](#license)
|
|
14
14
|
- [Suite Integration](#suite-integration)
|
|
15
15
|
- [Suite Signature](#suite-signature)
|
|
16
|
+
- [Introduction](#introduction)
|
|
16
17
|
- [Roadmap](#roadmap)
|
|
17
18
|
- [Status Compatibility](#status-compatibility)
|
|
18
19
|
- [Useful Links](#useful-links)
|
|
@@ -82,8 +83,8 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
|
|
|
82
83
|
- attrs: >=23.1.0
|
|
83
84
|
- cattrs: >=23.1.0
|
|
84
85
|
- requests:
|
|
85
|
-
- wexample-helpers: >=
|
|
86
|
-
- wexample-prompt: >=
|
|
86
|
+
- wexample-helpers: >=6.7.0
|
|
87
|
+
- wexample-prompt: >=2.0.0
|
|
87
88
|
|
|
88
89
|
## Versioning & Compatibility Policy
|
|
89
90
|
|
|
@@ -119,6 +120,8 @@ This packages suite embodies this spirit. Trusted by professionals and enthusias
|
|
|
119
120
|
|
|
120
121
|
Wexample cultivates a culture of mastery. Each package, each contribution carries the mark of a community that values precision, ethics, and innovation — a community proud to shape the future of digital craftsmanship.
|
|
121
122
|
|
|
123
|
+
A Python toolkit for building and consuming structured APIs.
|
|
124
|
+
|
|
122
125
|
## Known Limitations & Roadmap
|
|
123
126
|
|
|
124
127
|
Current limitations and planned features are tracked in the GitHub issues.
|
|
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "wexample-api"
|
|
9
|
-
version = "
|
|
9
|
+
version = "6.0.25"
|
|
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>=
|
|
25
|
-
"wexample-prompt>=
|
|
24
|
+
"wexample-helpers>=6.7.0",
|
|
25
|
+
"wexample-prompt>=2.0.0",
|
|
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
|
{wexample_api-0.0.85 → wexample_api-6.0.25}/src/wexample_api/errors/gateway_authentication_error.py
RENAMED
|
File without changes
|
{wexample_api-0.0.85 → wexample_api-6.0.25}/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
|