wexample-api 0.0.83__tar.gz → 0.0.85__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.83 → wexample_api-0.0.85}/PKG-INFO +49 -122
- {wexample_api-0.0.83 → wexample_api-0.0.85}/README.md +46 -119
- {wexample_api-0.0.83 → wexample_api-0.0.85}/pyproject.toml +3 -3
- wexample_api-0.0.83/tests/new_architecture/__init__.py +0 -0
- {wexample_api-0.0.83 → wexample_api-0.0.85}/src/wexample_api/__init__.py +0 -0
- {wexample_api-0.0.83 → wexample_api-0.0.85}/src/wexample_api/__pycache__/__init__.py +0 -0
- {wexample_api-0.0.83/src/wexample_api/client → wexample_api-0.0.85/src/wexample_api/common}/__init__.py +0 -0
- {wexample_api-0.0.83/src/wexample_api/common → wexample_api-0.0.85/src/wexample_api/common/__pycache__}/__init__.py +0 -0
- {wexample_api-0.0.83 → wexample_api-0.0.85}/src/wexample_api/common/abstract_gateway.py +0 -0
- {wexample_api-0.0.83 → wexample_api-0.0.85}/src/wexample_api/common/http_request_payload.py +0 -0
- {wexample_api-0.0.83/src/wexample_api/common/__pycache__ → wexample_api-0.0.85/src/wexample_api/const}/__init__.py +0 -0
- {wexample_api-0.0.83/src/wexample_api/const → wexample_api-0.0.85/src/wexample_api/const/__pycache__}/__init__.py +0 -0
- {wexample_api-0.0.83 → wexample_api-0.0.85}/src/wexample_api/const/http.py +0 -0
- {wexample_api-0.0.83/src/wexample_api/const/__pycache__ → wexample_api-0.0.85/src/wexample_api/demo}/__init__.py +0 -0
- {wexample_api-0.0.83 → wexample_api-0.0.85}/src/wexample_api/demo/demo_simple_gateway.py +0 -0
- {wexample_api-0.0.83/src/wexample_api/demo → wexample_api-0.0.85/src/wexample_api/enums}/__init__.py +0 -0
- {wexample_api-0.0.83/src/wexample_api/enums → wexample_api-0.0.85/src/wexample_api/enums/__pycache__}/__init__.py +0 -0
- {wexample_api-0.0.83 → wexample_api-0.0.85}/src/wexample_api/enums/http.py +0 -0
- {wexample_api-0.0.83/src/wexample_api/enums/__pycache__ → wexample_api-0.0.85/src/wexample_api/errors}/__init__.py +0 -0
- {wexample_api-0.0.83 → wexample_api-0.0.85}/src/wexample_api/errors/gateway_authentication_error.py +0 -0
- {wexample_api-0.0.83 → wexample_api-0.0.85}/src/wexample_api/errors/gateway_connexion_error.py +0 -0
- {wexample_api-0.0.83/src/wexample_api/errors → wexample_api-0.0.85/src/wexample_api/middleware}/__init__.py +0 -0
- {wexample_api-0.0.83/src/wexample_api/middleware → wexample_api-0.0.85/src/wexample_api/models}/__init__.py +0 -0
- {wexample_api-0.0.83 → wexample_api-0.0.85}/src/wexample_api/py.typed +0 -0
- {wexample_api-0.0.83/src/wexample_api/models → wexample_api-0.0.85/tests/common}/__init__.py +0 -0
- {wexample_api-0.0.83 → wexample_api-0.0.85}/tests/common/test_http_request_payload.py +0 -0
- {wexample_api-0.0.83/tests/common → wexample_api-0.0.85/tests/demo}/__init__.py +0 -0
- {wexample_api-0.0.83 → wexample_api-0.0.85}/tests/demo/test_demo_simple_gateway.py +0 -0
- {wexample_api-0.0.83/tests/demo → wexample_api-0.0.85/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.85
|
|
4
4
|
Summary: Some python basic helpers for apis.
|
|
5
5
|
Author-Email: weeger <contact@wexample.com>
|
|
6
6
|
License: MIT
|
|
@@ -12,57 +12,32 @@ 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>=0.7.0
|
|
16
|
+
Requires-Dist: wexample-prompt>=1.0.0
|
|
17
17
|
Provides-Extra: dev
|
|
18
18
|
Requires-Dist: pytest; extra == "dev"
|
|
19
19
|
Requires-Dist: pytest-cov; extra == "dev"
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
|
|
22
|
-
#
|
|
22
|
+
# api
|
|
23
23
|
|
|
24
|
-
Version: 0.0.
|
|
24
|
+
Version: 0.0.85
|
|
25
25
|
|
|
26
26
|
Some python basic helpers for apis.
|
|
27
27
|
|
|
28
28
|
## Table of Contents
|
|
29
29
|
|
|
30
|
-
- [Status Compatibility](#status-compatibility)
|
|
31
|
-
- [Api Reference](#api-reference)
|
|
32
30
|
- [Tests](#tests)
|
|
33
|
-
- [
|
|
31
|
+
- [Suite Integration](#suite-integration)
|
|
32
|
+
- [Dependencies](#dependencies)
|
|
34
33
|
- [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
34
|
- [License](#license)
|
|
44
|
-
- [Useful Links](#useful-links)
|
|
45
35
|
- [Suite Integration](#suite-integration)
|
|
46
|
-
- [Compatibility Matrix](#compatibility-matrix)
|
|
47
|
-
- [Dependencies](#dependencies)
|
|
48
36
|
- [Suite Signature](#suite-signature)
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
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.
|
|
37
|
+
- [Roadmap](#roadmap)
|
|
38
|
+
- [Status Compatibility](#status-compatibility)
|
|
39
|
+
- [Useful Links](#useful-links)
|
|
40
|
+
- [Migration Notes](#migration-notes)
|
|
66
41
|
|
|
67
42
|
## Tests
|
|
68
43
|
|
|
@@ -113,16 +88,23 @@ To enforce a minimum coverage percentage:
|
|
|
113
88
|
|
|
114
89
|
This will cause the test suite to fail if coverage drops below 80%.
|
|
115
90
|
|
|
116
|
-
##
|
|
91
|
+
## Integration in the Suite
|
|
117
92
|
|
|
118
|
-
|
|
93
|
+
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.
|
|
119
94
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
- **Testing**: High test coverage requirements
|
|
95
|
+
### Related Packages
|
|
96
|
+
|
|
97
|
+
The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
|
|
124
98
|
|
|
125
|
-
|
|
99
|
+
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
100
|
+
|
|
101
|
+
## Dependencies
|
|
102
|
+
|
|
103
|
+
- attrs: >=23.1.0
|
|
104
|
+
- cattrs: >=23.1.0
|
|
105
|
+
- requests:
|
|
106
|
+
- wexample-helpers: >=0.7.0
|
|
107
|
+
- wexample-prompt: >=1.0.0
|
|
126
108
|
|
|
127
109
|
## Versioning & Compatibility Policy
|
|
128
110
|
|
|
@@ -134,72 +116,45 @@ Wexample packages follow **Semantic Versioning** (SemVer):
|
|
|
134
116
|
|
|
135
117
|
We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
|
|
136
118
|
|
|
137
|
-
##
|
|
138
|
-
|
|
139
|
-
See [CHANGELOG.md](CHANGELOG.md) for detailed version history and release notes.
|
|
140
|
-
|
|
141
|
-
Major changes are documented with migration guides when applicable.
|
|
142
|
-
|
|
143
|
-
## Migration Notes
|
|
144
|
-
|
|
145
|
-
When upgrading between major versions, refer to the migration guides in the documentation.
|
|
146
|
-
|
|
147
|
-
Breaking changes are clearly documented with upgrade paths and examples.
|
|
148
|
-
|
|
149
|
-
## Known Limitations & Roadmap
|
|
150
|
-
|
|
151
|
-
Current limitations and planned features are tracked in the GitHub issues.
|
|
152
|
-
|
|
153
|
-
See the [project roadmap](https://github.com/wexample/python-api/issues) for upcoming features and improvements.
|
|
154
|
-
|
|
155
|
-
## Security Policy
|
|
156
|
-
|
|
157
|
-
### Reporting Vulnerabilities
|
|
119
|
+
## License
|
|
158
120
|
|
|
159
|
-
|
|
121
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
160
122
|
|
|
161
|
-
|
|
123
|
+
Free to use in both personal and commercial projects.
|
|
162
124
|
|
|
163
|
-
|
|
125
|
+
## Integration in the Suite
|
|
164
126
|
|
|
165
|
-
|
|
127
|
+
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.
|
|
166
128
|
|
|
167
|
-
|
|
129
|
+
### Related Packages
|
|
168
130
|
|
|
169
|
-
|
|
131
|
+
The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
|
|
170
132
|
|
|
171
|
-
|
|
133
|
+
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
172
134
|
|
|
173
|
-
|
|
174
|
-
- **GitHub Discussions**: Questions and community support
|
|
175
|
-
- **Documentation**: Comprehensive guides and API reference
|
|
176
|
-
- **Email**: contact@wexample.com for general inquiries
|
|
135
|
+
# About us
|
|
177
136
|
|
|
178
|
-
|
|
137
|
+
[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.
|
|
179
138
|
|
|
180
|
-
|
|
139
|
+
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.
|
|
181
140
|
|
|
182
|
-
|
|
141
|
+
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.
|
|
183
142
|
|
|
184
|
-
|
|
143
|
+
## Known Limitations & Roadmap
|
|
185
144
|
|
|
186
|
-
|
|
187
|
-
2. **Create** a feature branch
|
|
188
|
-
3. **Make** your changes
|
|
189
|
-
4. **Test** thoroughly
|
|
190
|
-
5. **Submit** a pull request
|
|
145
|
+
Current limitations and planned features are tracked in the GitHub issues.
|
|
191
146
|
|
|
192
|
-
|
|
147
|
+
See the [project roadmap](https://github.com/wexample/python-api/issues) for upcoming features and improvements.
|
|
193
148
|
|
|
194
|
-
|
|
149
|
+
## Status & Compatibility
|
|
195
150
|
|
|
196
|
-
|
|
151
|
+
**Maturity**: Production-ready
|
|
197
152
|
|
|
198
|
-
|
|
153
|
+
**Python Support**: >=3.10
|
|
199
154
|
|
|
200
|
-
|
|
155
|
+
**OS Support**: Linux, macOS, Windows
|
|
201
156
|
|
|
202
|
-
|
|
157
|
+
**Status**: Actively maintained
|
|
203
158
|
|
|
204
159
|
## Useful Links
|
|
205
160
|
|
|
@@ -207,38 +162,10 @@ Free to use in both personal and commercial projects.
|
|
|
207
162
|
- **Documentation**: [docs.wexample.com](https://docs.wexample.com)
|
|
208
163
|
- **Issue Tracker**: https://github.com/wexample/python-api/issues
|
|
209
164
|
- **Discussions**: https://github.com/wexample/python-api/discussions
|
|
210
|
-
- **PyPI**: [pypi.org/project/
|
|
211
|
-
|
|
212
|
-
## Integration in the Suite
|
|
213
|
-
|
|
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
|
-
|
|
216
|
-
### Related Packages
|
|
217
|
-
|
|
218
|
-
The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
|
|
219
|
-
|
|
220
|
-
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
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.88
|
|
234
|
-
- wexample-prompt: ==0.0.97
|
|
235
|
-
|
|
165
|
+
- **PyPI**: [pypi.org/project/api](https://pypi.org/project/api/)
|
|
236
166
|
|
|
237
|
-
|
|
238
|
-
|
|
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.
|
|
240
|
-
|
|
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.
|
|
167
|
+
## Migration Notes
|
|
242
168
|
|
|
243
|
-
|
|
169
|
+
When upgrading between major versions, refer to the migration guides in the documentation.
|
|
244
170
|
|
|
171
|
+
Breaking changes are clearly documented with upgrade paths and examples.
|
|
@@ -1,47 +1,22 @@
|
|
|
1
|
-
#
|
|
1
|
+
# api
|
|
2
2
|
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.85
|
|
4
4
|
|
|
5
5
|
Some python basic helpers for apis.
|
|
6
6
|
|
|
7
7
|
## Table of Contents
|
|
8
8
|
|
|
9
|
-
- [Status Compatibility](#status-compatibility)
|
|
10
|
-
- [Api Reference](#api-reference)
|
|
11
9
|
- [Tests](#tests)
|
|
12
|
-
- [
|
|
10
|
+
- [Suite Integration](#suite-integration)
|
|
11
|
+
- [Dependencies](#dependencies)
|
|
13
12
|
- [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
13
|
- [License](#license)
|
|
23
|
-
- [Useful Links](#useful-links)
|
|
24
14
|
- [Suite Integration](#suite-integration)
|
|
25
|
-
- [Compatibility Matrix](#compatibility-matrix)
|
|
26
|
-
- [Dependencies](#dependencies)
|
|
27
15
|
- [Suite Signature](#suite-signature)
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
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.
|
|
16
|
+
- [Roadmap](#roadmap)
|
|
17
|
+
- [Status Compatibility](#status-compatibility)
|
|
18
|
+
- [Useful Links](#useful-links)
|
|
19
|
+
- [Migration Notes](#migration-notes)
|
|
45
20
|
|
|
46
21
|
## Tests
|
|
47
22
|
|
|
@@ -92,16 +67,23 @@ To enforce a minimum coverage percentage:
|
|
|
92
67
|
|
|
93
68
|
This will cause the test suite to fail if coverage drops below 80%.
|
|
94
69
|
|
|
95
|
-
##
|
|
70
|
+
## Integration in the Suite
|
|
96
71
|
|
|
97
|
-
|
|
72
|
+
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.
|
|
98
73
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
- **Testing**: High test coverage requirements
|
|
74
|
+
### Related Packages
|
|
75
|
+
|
|
76
|
+
The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
|
|
103
77
|
|
|
104
|
-
|
|
78
|
+
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
79
|
+
|
|
80
|
+
## Dependencies
|
|
81
|
+
|
|
82
|
+
- attrs: >=23.1.0
|
|
83
|
+
- cattrs: >=23.1.0
|
|
84
|
+
- requests:
|
|
85
|
+
- wexample-helpers: >=0.7.0
|
|
86
|
+
- wexample-prompt: >=1.0.0
|
|
105
87
|
|
|
106
88
|
## Versioning & Compatibility Policy
|
|
107
89
|
|
|
@@ -113,72 +95,45 @@ Wexample packages follow **Semantic Versioning** (SemVer):
|
|
|
113
95
|
|
|
114
96
|
We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
|
|
115
97
|
|
|
116
|
-
##
|
|
117
|
-
|
|
118
|
-
See [CHANGELOG.md](CHANGELOG.md) for detailed version history and release notes.
|
|
119
|
-
|
|
120
|
-
Major changes are documented with migration guides when applicable.
|
|
121
|
-
|
|
122
|
-
## Migration Notes
|
|
123
|
-
|
|
124
|
-
When upgrading between major versions, refer to the migration guides in the documentation.
|
|
125
|
-
|
|
126
|
-
Breaking changes are clearly documented with upgrade paths and examples.
|
|
127
|
-
|
|
128
|
-
## Known Limitations & Roadmap
|
|
129
|
-
|
|
130
|
-
Current limitations and planned features are tracked in the GitHub issues.
|
|
131
|
-
|
|
132
|
-
See the [project roadmap](https://github.com/wexample/python-api/issues) for upcoming features and improvements.
|
|
133
|
-
|
|
134
|
-
## Security Policy
|
|
135
|
-
|
|
136
|
-
### Reporting Vulnerabilities
|
|
98
|
+
## License
|
|
137
99
|
|
|
138
|
-
|
|
100
|
+
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
|
139
101
|
|
|
140
|
-
|
|
102
|
+
Free to use in both personal and commercial projects.
|
|
141
103
|
|
|
142
|
-
|
|
104
|
+
## Integration in the Suite
|
|
143
105
|
|
|
144
|
-
|
|
106
|
+
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.
|
|
145
107
|
|
|
146
|
-
|
|
108
|
+
### Related Packages
|
|
147
109
|
|
|
148
|
-
|
|
110
|
+
The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
|
|
149
111
|
|
|
150
|
-
|
|
112
|
+
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
151
113
|
|
|
152
|
-
|
|
153
|
-
- **GitHub Discussions**: Questions and community support
|
|
154
|
-
- **Documentation**: Comprehensive guides and API reference
|
|
155
|
-
- **Email**: contact@wexample.com for general inquiries
|
|
114
|
+
# About us
|
|
156
115
|
|
|
157
|
-
|
|
116
|
+
[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.
|
|
158
117
|
|
|
159
|
-
|
|
118
|
+
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.
|
|
160
119
|
|
|
161
|
-
|
|
120
|
+
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.
|
|
162
121
|
|
|
163
|
-
|
|
122
|
+
## Known Limitations & Roadmap
|
|
164
123
|
|
|
165
|
-
|
|
166
|
-
2. **Create** a feature branch
|
|
167
|
-
3. **Make** your changes
|
|
168
|
-
4. **Test** thoroughly
|
|
169
|
-
5. **Submit** a pull request
|
|
124
|
+
Current limitations and planned features are tracked in the GitHub issues.
|
|
170
125
|
|
|
171
|
-
|
|
126
|
+
See the [project roadmap](https://github.com/wexample/python-api/issues) for upcoming features and improvements.
|
|
172
127
|
|
|
173
|
-
|
|
128
|
+
## Status & Compatibility
|
|
174
129
|
|
|
175
|
-
|
|
130
|
+
**Maturity**: Production-ready
|
|
176
131
|
|
|
177
|
-
|
|
132
|
+
**Python Support**: >=3.10
|
|
178
133
|
|
|
179
|
-
|
|
134
|
+
**OS Support**: Linux, macOS, Windows
|
|
180
135
|
|
|
181
|
-
|
|
136
|
+
**Status**: Actively maintained
|
|
182
137
|
|
|
183
138
|
## Useful Links
|
|
184
139
|
|
|
@@ -186,38 +141,10 @@ Free to use in both personal and commercial projects.
|
|
|
186
141
|
- **Documentation**: [docs.wexample.com](https://docs.wexample.com)
|
|
187
142
|
- **Issue Tracker**: https://github.com/wexample/python-api/issues
|
|
188
143
|
- **Discussions**: https://github.com/wexample/python-api/discussions
|
|
189
|
-
- **PyPI**: [pypi.org/project/
|
|
190
|
-
|
|
191
|
-
## Integration in the Suite
|
|
192
|
-
|
|
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
|
-
|
|
195
|
-
### Related Packages
|
|
196
|
-
|
|
197
|
-
The suite includes packages for configuration management, file handling, prompts, and more. Each package can be used independently or as part of the integrated suite.
|
|
198
|
-
|
|
199
|
-
Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
|
|
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.88
|
|
213
|
-
- wexample-prompt: ==0.0.97
|
|
214
|
-
|
|
144
|
+
- **PyPI**: [pypi.org/project/api](https://pypi.org/project/api/)
|
|
215
145
|
|
|
216
|
-
|
|
217
|
-
|
|
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.
|
|
219
|
-
|
|
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.
|
|
146
|
+
## Migration Notes
|
|
221
147
|
|
|
222
|
-
|
|
148
|
+
When upgrading between major versions, refer to the migration guides in the documentation.
|
|
223
149
|
|
|
150
|
+
Breaking changes are clearly documented with upgrade paths and examples.
|
|
@@ -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.85"
|
|
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>=0.7.0",
|
|
25
|
+
"wexample-prompt>=1.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
|
{wexample_api-0.0.83/src/wexample_api/demo → wexample_api-0.0.85/src/wexample_api/enums}/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{wexample_api-0.0.83 → wexample_api-0.0.85}/src/wexample_api/errors/gateway_authentication_error.py
RENAMED
|
File without changes
|
{wexample_api-0.0.83 → wexample_api-0.0.85}/src/wexample_api/errors/gateway_connexion_error.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{wexample_api-0.0.83/src/wexample_api/models → wexample_api-0.0.85/tests/common}/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|