wexample-api 0.0.80__tar.gz → 0.0.81__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.80 → wexample_api-0.0.81}/PKG-INFO +64 -8
- {wexample_api-0.0.80 → wexample_api-0.0.81}/README.md +61 -5
- {wexample_api-0.0.80 → wexample_api-0.0.81}/pyproject.toml +3 -3
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/client/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/middleware/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/models/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/tests/new_architecture/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/common/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/common/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/common/abstract_gateway.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/common/http_request_payload.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/const/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/const/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/const/http.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/demo/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/demo/demo_simple_gateway.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/enums/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/enums/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/enums/http.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/errors/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/errors/gateway_authentication_error.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/errors/gateway_connexion_error.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/py.typed +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/tests/common/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/tests/common/test_http_request_payload.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/tests/demo/__init__.py +0 -0
- {wexample_api-0.0.80 → wexample_api-0.0.81}/tests/demo/test_demo_simple_gateway.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.81
|
|
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.86
|
|
16
|
+
Requires-Dist: wexample-prompt==0.0.95
|
|
17
17
|
Provides-Extra: dev
|
|
18
18
|
Requires-Dist: pytest; extra == "dev"
|
|
19
19
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
@@ -21,10 +21,49 @@ Description-Content-Type: text/markdown
|
|
|
21
21
|
|
|
22
22
|
# wexample-api
|
|
23
23
|
|
|
24
|
-
Version: 0.0.
|
|
24
|
+
Version: 0.0.81
|
|
25
25
|
|
|
26
26
|
Some python basic helpers for apis.
|
|
27
27
|
|
|
28
|
+
## Table of Contents
|
|
29
|
+
|
|
30
|
+
- [Status Compatibility](#status-compatibility)
|
|
31
|
+
- [Api Reference](#api-reference)
|
|
32
|
+
- [Tests](#tests)
|
|
33
|
+
- [Code Quality](#code-quality)
|
|
34
|
+
- [Versioning](#versioning)
|
|
35
|
+
- [Changelog](#changelog)
|
|
36
|
+
- [Migration Notes](#migration-notes)
|
|
37
|
+
- [Roadmap](#roadmap)
|
|
38
|
+
- [Security](#security)
|
|
39
|
+
- [Privacy](#privacy)
|
|
40
|
+
- [Support](#support)
|
|
41
|
+
- [Contribution Guidelines](#contribution-guidelines)
|
|
42
|
+
- [Maintainers](#maintainers)
|
|
43
|
+
- [License](#license)
|
|
44
|
+
- [Useful Links](#useful-links)
|
|
45
|
+
- [Suite Integration](#suite-integration)
|
|
46
|
+
- [Compatibility Matrix](#compatibility-matrix)
|
|
47
|
+
- [Dependencies](#dependencies)
|
|
48
|
+
- [Suite Signature](#suite-signature)
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
## Status & Compatibility
|
|
52
|
+
|
|
53
|
+
**Maturity**: Production-ready
|
|
54
|
+
|
|
55
|
+
**Python Support**: >=3.10
|
|
56
|
+
|
|
57
|
+
**OS Support**: Linux, macOS, Windows
|
|
58
|
+
|
|
59
|
+
**Status**: Actively maintained
|
|
60
|
+
|
|
61
|
+
## API Reference
|
|
62
|
+
|
|
63
|
+
Full API documentation is available in the source code docstrings.
|
|
64
|
+
|
|
65
|
+
Key modules and classes are documented with type hints for better IDE support.
|
|
66
|
+
|
|
28
67
|
## Tests
|
|
29
68
|
|
|
30
69
|
This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
|
|
@@ -117,7 +156,7 @@ See the [project roadmap](https://github.com/wexample/python-api/issues) for upc
|
|
|
117
156
|
|
|
118
157
|
### Reporting Vulnerabilities
|
|
119
158
|
|
|
120
|
-
If you discover a security vulnerability, please email
|
|
159
|
+
If you discover a security vulnerability, please email contact@wexample.com.
|
|
121
160
|
|
|
122
161
|
**Do not** open public issues for security vulnerabilities.
|
|
123
162
|
|
|
@@ -140,7 +179,7 @@ Community support is available through GitHub Discussions.
|
|
|
140
179
|
|
|
141
180
|
## Contribution Guidelines
|
|
142
181
|
|
|
143
|
-
We welcome contributions to the Wexample suite!
|
|
182
|
+
We welcome contributions to the Wexample suite!
|
|
144
183
|
|
|
145
184
|
### How to Contribute
|
|
146
185
|
|
|
@@ -158,7 +197,9 @@ See [CONTRIBUTORS.md](CONTRIBUTORS.md) for the full list of contributors.
|
|
|
158
197
|
|
|
159
198
|
## License
|
|
160
199
|
|
|
161
|
-
MIT
|
|
200
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
201
|
+
|
|
202
|
+
Free to use in both personal and commercial projects.
|
|
162
203
|
|
|
163
204
|
## Useful Links
|
|
164
205
|
|
|
@@ -178,9 +219,24 @@ The suite includes packages for configuration management, file handling, prompts
|
|
|
178
219
|
|
|
179
220
|
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
180
221
|
|
|
222
|
+
## Compatibility Matrix
|
|
223
|
+
|
|
224
|
+
This package is part of the Wexample suite and is compatible with other suite packages.
|
|
225
|
+
|
|
226
|
+
Refer to each package's documentation for specific version compatibility requirements.
|
|
227
|
+
|
|
228
|
+
## Dependencies
|
|
229
|
+
|
|
230
|
+
- attrs: >=23.1.0
|
|
231
|
+
- cattrs: >=23.1.0
|
|
232
|
+
- requests:
|
|
233
|
+
- wexample-helpers: ==0.0.86
|
|
234
|
+
- wexample-prompt: ==0.0.95
|
|
235
|
+
|
|
236
|
+
|
|
181
237
|
# About us
|
|
182
238
|
|
|
183
|
-
Wexample stands as a cornerstone of the digital ecosystem — a collective of seasoned engineers, researchers, and creators driven by a relentless pursuit of technological excellence. More than a media platform, it has grown into a vibrant community where innovation meets craftsmanship, and where every line of code reflects a commitment to clarity, durability, and shared intelligence.
|
|
239
|
+
[Wexample](https://wexample.com) stands as a cornerstone of the digital ecosystem — a collective of seasoned engineers, researchers, and creators driven by a relentless pursuit of technological excellence. More than a media platform, it has grown into a vibrant community where innovation meets craftsmanship, and where every line of code reflects a commitment to clarity, durability, and shared intelligence.
|
|
184
240
|
|
|
185
241
|
This packages suite embodies this spirit. Trusted by professionals and enthusiasts alike, it delivers a consistent, high-quality foundation for modern development — open, elegant, and battle-tested. Its reputation is built on years of collaboration, refinement, and rigorous attention to detail, making it a natural choice for those who demand both robustness and beauty in their tools.
|
|
186
242
|
|
|
@@ -1,9 +1,48 @@
|
|
|
1
1
|
# wexample-api
|
|
2
2
|
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.81
|
|
4
4
|
|
|
5
5
|
Some python basic helpers for apis.
|
|
6
6
|
|
|
7
|
+
## Table of Contents
|
|
8
|
+
|
|
9
|
+
- [Status Compatibility](#status-compatibility)
|
|
10
|
+
- [Api Reference](#api-reference)
|
|
11
|
+
- [Tests](#tests)
|
|
12
|
+
- [Code Quality](#code-quality)
|
|
13
|
+
- [Versioning](#versioning)
|
|
14
|
+
- [Changelog](#changelog)
|
|
15
|
+
- [Migration Notes](#migration-notes)
|
|
16
|
+
- [Roadmap](#roadmap)
|
|
17
|
+
- [Security](#security)
|
|
18
|
+
- [Privacy](#privacy)
|
|
19
|
+
- [Support](#support)
|
|
20
|
+
- [Contribution Guidelines](#contribution-guidelines)
|
|
21
|
+
- [Maintainers](#maintainers)
|
|
22
|
+
- [License](#license)
|
|
23
|
+
- [Useful Links](#useful-links)
|
|
24
|
+
- [Suite Integration](#suite-integration)
|
|
25
|
+
- [Compatibility Matrix](#compatibility-matrix)
|
|
26
|
+
- [Dependencies](#dependencies)
|
|
27
|
+
- [Suite Signature](#suite-signature)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## Status & Compatibility
|
|
31
|
+
|
|
32
|
+
**Maturity**: Production-ready
|
|
33
|
+
|
|
34
|
+
**Python Support**: >=3.10
|
|
35
|
+
|
|
36
|
+
**OS Support**: Linux, macOS, Windows
|
|
37
|
+
|
|
38
|
+
**Status**: Actively maintained
|
|
39
|
+
|
|
40
|
+
## API Reference
|
|
41
|
+
|
|
42
|
+
Full API documentation is available in the source code docstrings.
|
|
43
|
+
|
|
44
|
+
Key modules and classes are documented with type hints for better IDE support.
|
|
45
|
+
|
|
7
46
|
## Tests
|
|
8
47
|
|
|
9
48
|
This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
|
|
@@ -96,7 +135,7 @@ See the [project roadmap](https://github.com/wexample/python-api/issues) for upc
|
|
|
96
135
|
|
|
97
136
|
### Reporting Vulnerabilities
|
|
98
137
|
|
|
99
|
-
If you discover a security vulnerability, please email
|
|
138
|
+
If you discover a security vulnerability, please email contact@wexample.com.
|
|
100
139
|
|
|
101
140
|
**Do not** open public issues for security vulnerabilities.
|
|
102
141
|
|
|
@@ -119,7 +158,7 @@ Community support is available through GitHub Discussions.
|
|
|
119
158
|
|
|
120
159
|
## Contribution Guidelines
|
|
121
160
|
|
|
122
|
-
We welcome contributions to the Wexample suite!
|
|
161
|
+
We welcome contributions to the Wexample suite!
|
|
123
162
|
|
|
124
163
|
### How to Contribute
|
|
125
164
|
|
|
@@ -137,7 +176,9 @@ See [CONTRIBUTORS.md](CONTRIBUTORS.md) for the full list of contributors.
|
|
|
137
176
|
|
|
138
177
|
## License
|
|
139
178
|
|
|
140
|
-
MIT
|
|
179
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
180
|
+
|
|
181
|
+
Free to use in both personal and commercial projects.
|
|
141
182
|
|
|
142
183
|
## Useful Links
|
|
143
184
|
|
|
@@ -157,9 +198,24 @@ The suite includes packages for configuration management, file handling, prompts
|
|
|
157
198
|
|
|
158
199
|
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
159
200
|
|
|
201
|
+
## Compatibility Matrix
|
|
202
|
+
|
|
203
|
+
This package is part of the Wexample suite and is compatible with other suite packages.
|
|
204
|
+
|
|
205
|
+
Refer to each package's documentation for specific version compatibility requirements.
|
|
206
|
+
|
|
207
|
+
## Dependencies
|
|
208
|
+
|
|
209
|
+
- attrs: >=23.1.0
|
|
210
|
+
- cattrs: >=23.1.0
|
|
211
|
+
- requests:
|
|
212
|
+
- wexample-helpers: ==0.0.86
|
|
213
|
+
- wexample-prompt: ==0.0.95
|
|
214
|
+
|
|
215
|
+
|
|
160
216
|
# About us
|
|
161
217
|
|
|
162
|
-
Wexample stands as a cornerstone of the digital ecosystem — a collective of seasoned engineers, researchers, and creators driven by a relentless pursuit of technological excellence. More than a media platform, it has grown into a vibrant community where innovation meets craftsmanship, and where every line of code reflects a commitment to clarity, durability, and shared intelligence.
|
|
218
|
+
[Wexample](https://wexample.com) stands as a cornerstone of the digital ecosystem — a collective of seasoned engineers, researchers, and creators driven by a relentless pursuit of technological excellence. More than a media platform, it has grown into a vibrant community where innovation meets craftsmanship, and where every line of code reflects a commitment to clarity, durability, and shared intelligence.
|
|
163
219
|
|
|
164
220
|
This packages suite embodies this spirit. Trusted by professionals and enthusiasts alike, it delivers a consistent, high-quality foundation for modern development — open, elegant, and battle-tested. Its reputation is built on years of collaboration, refinement, and rigorous attention to detail, making it a natural choice for those who demand both robustness and beauty in their tools.
|
|
165
221
|
|
|
@@ -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.81"
|
|
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.86",
|
|
25
|
+
"wexample-prompt==0.0.95",
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{wexample_api-0.0.80 → wexample_api-0.0.81}/src/wexample_api/errors/gateway_authentication_error.py
RENAMED
|
File without changes
|
{wexample_api-0.0.80 → wexample_api-0.0.81}/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
|