wexample-api 0.0.82__tar.gz → 0.0.84__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.
Files changed (31) hide show
  1. wexample_api-0.0.84/PKG-INFO +108 -0
  2. wexample_api-0.0.84/README.md +87 -0
  3. {wexample_api-0.0.82 → wexample_api-0.0.84}/pyproject.toml +3 -3
  4. wexample_api-0.0.82/PKG-INFO +0 -244
  5. wexample_api-0.0.82/README.md +0 -223
  6. wexample_api-0.0.82/tests/new_architecture/__init__.py +0 -0
  7. {wexample_api-0.0.82 → wexample_api-0.0.84}/src/wexample_api/__init__.py +0 -0
  8. {wexample_api-0.0.82 → wexample_api-0.0.84}/src/wexample_api/__pycache__/__init__.py +0 -0
  9. {wexample_api-0.0.82/src/wexample_api/client → wexample_api-0.0.84/src/wexample_api/common}/__init__.py +0 -0
  10. {wexample_api-0.0.82/src/wexample_api/common → wexample_api-0.0.84/src/wexample_api/common/__pycache__}/__init__.py +0 -0
  11. {wexample_api-0.0.82 → wexample_api-0.0.84}/src/wexample_api/common/abstract_gateway.py +0 -0
  12. {wexample_api-0.0.82 → wexample_api-0.0.84}/src/wexample_api/common/http_request_payload.py +0 -0
  13. {wexample_api-0.0.82/src/wexample_api/common/__pycache__ → wexample_api-0.0.84/src/wexample_api/const}/__init__.py +0 -0
  14. {wexample_api-0.0.82/src/wexample_api/const → wexample_api-0.0.84/src/wexample_api/const/__pycache__}/__init__.py +0 -0
  15. {wexample_api-0.0.82 → wexample_api-0.0.84}/src/wexample_api/const/http.py +0 -0
  16. {wexample_api-0.0.82/src/wexample_api/const/__pycache__ → wexample_api-0.0.84/src/wexample_api/demo}/__init__.py +0 -0
  17. {wexample_api-0.0.82 → wexample_api-0.0.84}/src/wexample_api/demo/demo_simple_gateway.py +0 -0
  18. {wexample_api-0.0.82/src/wexample_api/demo → wexample_api-0.0.84/src/wexample_api/enums}/__init__.py +0 -0
  19. {wexample_api-0.0.82/src/wexample_api/enums → wexample_api-0.0.84/src/wexample_api/enums/__pycache__}/__init__.py +0 -0
  20. {wexample_api-0.0.82 → wexample_api-0.0.84}/src/wexample_api/enums/http.py +0 -0
  21. {wexample_api-0.0.82/src/wexample_api/enums/__pycache__ → wexample_api-0.0.84/src/wexample_api/errors}/__init__.py +0 -0
  22. {wexample_api-0.0.82 → wexample_api-0.0.84}/src/wexample_api/errors/gateway_authentication_error.py +0 -0
  23. {wexample_api-0.0.82 → wexample_api-0.0.84}/src/wexample_api/errors/gateway_connexion_error.py +0 -0
  24. {wexample_api-0.0.82/src/wexample_api/errors → wexample_api-0.0.84/src/wexample_api/middleware}/__init__.py +0 -0
  25. {wexample_api-0.0.82/src/wexample_api/middleware → wexample_api-0.0.84/src/wexample_api/models}/__init__.py +0 -0
  26. {wexample_api-0.0.82 → wexample_api-0.0.84}/src/wexample_api/py.typed +0 -0
  27. {wexample_api-0.0.82/src/wexample_api/models → wexample_api-0.0.84/tests/common}/__init__.py +0 -0
  28. {wexample_api-0.0.82 → wexample_api-0.0.84}/tests/common/test_http_request_payload.py +0 -0
  29. {wexample_api-0.0.82/tests/common → wexample_api-0.0.84/tests/demo}/__init__.py +0 -0
  30. {wexample_api-0.0.82 → wexample_api-0.0.84}/tests/demo/test_demo_simple_gateway.py +0 -0
  31. {wexample_api-0.0.82/tests/demo → wexample_api-0.0.84/tests/new_architecture}/__init__.py +0 -0
@@ -0,0 +1,108 @@
1
+ Metadata-Version: 2.1
2
+ Name: wexample-api
3
+ Version: 0.0.84
4
+ Summary: Some python basic helpers for apis.
5
+ Author-Email: weeger <contact@wexample.com>
6
+ License: MIT
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Project-URL: homepage, https://github.com/wexample/python-api
11
+ Requires-Python: >=3.10
12
+ Requires-Dist: attrs>=23.1.0
13
+ Requires-Dist: cattrs>=23.1.0
14
+ Requires-Dist: requests
15
+ Requires-Dist: wexample-helpers==0.0.93
16
+ Requires-Dist: wexample-prompt==0.0.98
17
+ Provides-Extra: dev
18
+ Requires-Dist: pytest; extra == "dev"
19
+ Requires-Dist: pytest-cov; extra == "dev"
20
+ Description-Content-Type: text/markdown
21
+
22
+ # wexample-api
23
+
24
+ Version: 0.0.84
25
+
26
+ Some python basic helpers for apis.
27
+
28
+ ## Table of Contents
29
+
30
+ - [Status Compatibility](#status-compatibility)
31
+ - [Tests](#tests)
32
+ - [Roadmap](#roadmap)
33
+ - [Useful Links](#useful-links)
34
+
35
+
36
+ ## Status & Compatibility
37
+
38
+ **Maturity**: Production-ready
39
+
40
+ **Python Support**: >=3.10
41
+
42
+ **OS Support**: Linux, macOS, Windows
43
+
44
+ **Status**: Actively maintained
45
+
46
+ ## Tests
47
+
48
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
49
+
50
+ ### Installation
51
+
52
+ First, install the required testing dependencies:
53
+ ```bash
54
+ .venv/bin/python -m pip install pytest pytest-cov
55
+ ```
56
+
57
+ ### Basic Usage
58
+
59
+ Run all tests with coverage:
60
+ ```bash
61
+ .venv/bin/python -m pytest --cov --cov-report=html
62
+ ```
63
+
64
+ ### Common Commands
65
+ ```bash
66
+ # Run tests with coverage for a specific module
67
+ .venv/bin/python -m pytest --cov=your_module
68
+
69
+ # Show which lines are not covered
70
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
71
+
72
+ # Generate an HTML coverage report
73
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
74
+
75
+ # Combine terminal and HTML reports
76
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
77
+
78
+ # Run specific test file with coverage
79
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
80
+ ```
81
+
82
+ ### Viewing HTML Reports
83
+
84
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
85
+
86
+ ### Coverage Threshold
87
+
88
+ To enforce a minimum coverage percentage:
89
+ ```bash
90
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
91
+ ```
92
+
93
+ This will cause the test suite to fail if coverage drops below 80%.
94
+
95
+ ## Known Limitations & Roadmap
96
+
97
+ Current limitations and planned features are tracked in the GitHub issues.
98
+
99
+ See the [project roadmap](https://github.com/wexample/python-api/issues) for upcoming features and improvements.
100
+
101
+ ## Useful Links
102
+
103
+ - **Homepage**: https://github.com/wexample/python-api
104
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
105
+ - **Issue Tracker**: https://github.com/wexample/python-api/issues
106
+ - **Discussions**: https://github.com/wexample/python-api/discussions
107
+ - **PyPI**: [pypi.org/project/wexample-api](https://pypi.org/project/wexample-api/)
108
+
@@ -0,0 +1,87 @@
1
+ # wexample-api
2
+
3
+ Version: 0.0.84
4
+
5
+ Some python basic helpers for apis.
6
+
7
+ ## Table of Contents
8
+
9
+ - [Status Compatibility](#status-compatibility)
10
+ - [Tests](#tests)
11
+ - [Roadmap](#roadmap)
12
+ - [Useful Links](#useful-links)
13
+
14
+
15
+ ## Status & Compatibility
16
+
17
+ **Maturity**: Production-ready
18
+
19
+ **Python Support**: >=3.10
20
+
21
+ **OS Support**: Linux, macOS, Windows
22
+
23
+ **Status**: Actively maintained
24
+
25
+ ## Tests
26
+
27
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
28
+
29
+ ### Installation
30
+
31
+ First, install the required testing dependencies:
32
+ ```bash
33
+ .venv/bin/python -m pip install pytest pytest-cov
34
+ ```
35
+
36
+ ### Basic Usage
37
+
38
+ Run all tests with coverage:
39
+ ```bash
40
+ .venv/bin/python -m pytest --cov --cov-report=html
41
+ ```
42
+
43
+ ### Common Commands
44
+ ```bash
45
+ # Run tests with coverage for a specific module
46
+ .venv/bin/python -m pytest --cov=your_module
47
+
48
+ # Show which lines are not covered
49
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
50
+
51
+ # Generate an HTML coverage report
52
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
53
+
54
+ # Combine terminal and HTML reports
55
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
56
+
57
+ # Run specific test file with coverage
58
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
59
+ ```
60
+
61
+ ### Viewing HTML Reports
62
+
63
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
64
+
65
+ ### Coverage Threshold
66
+
67
+ To enforce a minimum coverage percentage:
68
+ ```bash
69
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
70
+ ```
71
+
72
+ This will cause the test suite to fail if coverage drops below 80%.
73
+
74
+ ## Known Limitations & Roadmap
75
+
76
+ Current limitations and planned features are tracked in the GitHub issues.
77
+
78
+ See the [project roadmap](https://github.com/wexample/python-api/issues) for upcoming features and improvements.
79
+
80
+ ## Useful Links
81
+
82
+ - **Homepage**: https://github.com/wexample/python-api
83
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
84
+ - **Issue Tracker**: https://github.com/wexample/python-api/issues
85
+ - **Discussions**: https://github.com/wexample/python-api/discussions
86
+ - **PyPI**: [pypi.org/project/wexample-api](https://pypi.org/project/wexample-api/)
87
+
@@ -6,7 +6,7 @@ build-backend = "pdm.backend"
6
6
 
7
7
  [project]
8
8
  name = "wexample-api"
9
- version = "0.0.82"
9
+ version = "0.0.84"
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.87",
25
- "wexample-prompt==0.0.96",
24
+ "wexample-helpers==0.0.93",
25
+ "wexample-prompt==0.0.98",
26
26
  ]
27
27
 
28
28
  [project.readme]
@@ -1,244 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: wexample-api
3
- Version: 0.0.82
4
- Summary: Some python basic helpers for apis.
5
- Author-Email: weeger <contact@wexample.com>
6
- License: MIT
7
- Classifier: Programming Language :: Python :: 3
8
- Classifier: License :: OSI Approved :: MIT License
9
- Classifier: Operating System :: OS Independent
10
- Project-URL: homepage, https://github.com/wexample/python-api
11
- Requires-Python: >=3.10
12
- Requires-Dist: attrs>=23.1.0
13
- Requires-Dist: cattrs>=23.1.0
14
- Requires-Dist: requests
15
- Requires-Dist: wexample-helpers==0.0.87
16
- Requires-Dist: wexample-prompt==0.0.96
17
- Provides-Extra: dev
18
- Requires-Dist: pytest; extra == "dev"
19
- Requires-Dist: pytest-cov; extra == "dev"
20
- Description-Content-Type: text/markdown
21
-
22
- # wexample-api
23
-
24
- Version: 0.0.82
25
-
26
- Some python basic helpers for apis.
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
-
67
- ## Tests
68
-
69
- This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
70
-
71
- ### Installation
72
-
73
- First, install the required testing dependencies:
74
- ```bash
75
- .venv/bin/python -m pip install pytest pytest-cov
76
- ```
77
-
78
- ### Basic Usage
79
-
80
- Run all tests with coverage:
81
- ```bash
82
- .venv/bin/python -m pytest --cov --cov-report=html
83
- ```
84
-
85
- ### Common Commands
86
- ```bash
87
- # Run tests with coverage for a specific module
88
- .venv/bin/python -m pytest --cov=your_module
89
-
90
- # Show which lines are not covered
91
- .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
92
-
93
- # Generate an HTML coverage report
94
- .venv/bin/python -m pytest --cov=your_module --cov-report=html
95
-
96
- # Combine terminal and HTML reports
97
- .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
98
-
99
- # Run specific test file with coverage
100
- .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
101
- ```
102
-
103
- ### Viewing HTML Reports
104
-
105
- After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
106
-
107
- ### Coverage Threshold
108
-
109
- To enforce a minimum coverage percentage:
110
- ```bash
111
- .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
112
- ```
113
-
114
- This will cause the test suite to fail if coverage drops below 80%.
115
-
116
- ## Code Quality & Typing
117
-
118
- All the suite packages follow strict quality standards:
119
-
120
- - **Type hints**: Full type coverage with mypy validation
121
- - **Code formatting**: Enforced with black and isort
122
- - **Linting**: Comprehensive checks with custom scripts and tools
123
- - **Testing**: High test coverage requirements
124
-
125
- These standards ensure reliability and maintainability across the suite.
126
-
127
- ## Versioning & Compatibility Policy
128
-
129
- Wexample packages follow **Semantic Versioning** (SemVer):
130
-
131
- - **MAJOR**: Breaking changes
132
- - **MINOR**: New features, backward compatible
133
- - **PATCH**: Bug fixes, backward compatible
134
-
135
- We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
136
-
137
- ## Changelog
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
158
-
159
- If you discover a security vulnerability, please email contact@wexample.com.
160
-
161
- **Do not** open public issues for security vulnerabilities.
162
-
163
- We take security seriously and will respond promptly to verified reports.
164
-
165
- ## Privacy & Telemetry
166
-
167
- This package does **not** collect any telemetry or usage data.
168
-
169
- Your privacy is respected — no data is transmitted to external services.
170
-
171
- ## Support Channels
172
-
173
- - **GitHub Issues**: Bug reports and feature requests
174
- - **GitHub Discussions**: Questions and community support
175
- - **Documentation**: Comprehensive guides and API reference
176
- - **Email**: contact@wexample.com for general inquiries
177
-
178
- Community support is available through GitHub Discussions.
179
-
180
- ## Contribution Guidelines
181
-
182
- We welcome contributions to the Wexample suite!
183
-
184
- ### How to Contribute
185
-
186
- 1. **Fork** the repository
187
- 2. **Create** a feature branch
188
- 3. **Make** your changes
189
- 4. **Test** thoroughly
190
- 5. **Submit** a pull request
191
-
192
- ## Maintainers & Authors
193
-
194
- Maintained by the Wexample team and community contributors.
195
-
196
- See [CONTRIBUTORS.md](CONTRIBUTORS.md) for the full list of contributors.
197
-
198
- ## License
199
-
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.
203
-
204
- ## Useful Links
205
-
206
- - **Homepage**: https://github.com/wexample/python-api
207
- - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
208
- - **Issue Tracker**: https://github.com/wexample/python-api/issues
209
- - **Discussions**: https://github.com/wexample/python-api/discussions
210
- - **PyPI**: [pypi.org/project/wexample-api](https://pypi.org/project/wexample-api/)
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.87
234
- - wexample-prompt: ==0.0.96
235
-
236
-
237
- # About us
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.
242
-
243
- 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.
244
-
@@ -1,223 +0,0 @@
1
- # wexample-api
2
-
3
- Version: 0.0.82
4
-
5
- Some python basic helpers for apis.
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
-
46
- ## Tests
47
-
48
- This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
49
-
50
- ### Installation
51
-
52
- First, install the required testing dependencies:
53
- ```bash
54
- .venv/bin/python -m pip install pytest pytest-cov
55
- ```
56
-
57
- ### Basic Usage
58
-
59
- Run all tests with coverage:
60
- ```bash
61
- .venv/bin/python -m pytest --cov --cov-report=html
62
- ```
63
-
64
- ### Common Commands
65
- ```bash
66
- # Run tests with coverage for a specific module
67
- .venv/bin/python -m pytest --cov=your_module
68
-
69
- # Show which lines are not covered
70
- .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
71
-
72
- # Generate an HTML coverage report
73
- .venv/bin/python -m pytest --cov=your_module --cov-report=html
74
-
75
- # Combine terminal and HTML reports
76
- .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
77
-
78
- # Run specific test file with coverage
79
- .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
80
- ```
81
-
82
- ### Viewing HTML Reports
83
-
84
- After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
85
-
86
- ### Coverage Threshold
87
-
88
- To enforce a minimum coverage percentage:
89
- ```bash
90
- .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
91
- ```
92
-
93
- This will cause the test suite to fail if coverage drops below 80%.
94
-
95
- ## Code Quality & Typing
96
-
97
- All the suite packages follow strict quality standards:
98
-
99
- - **Type hints**: Full type coverage with mypy validation
100
- - **Code formatting**: Enforced with black and isort
101
- - **Linting**: Comprehensive checks with custom scripts and tools
102
- - **Testing**: High test coverage requirements
103
-
104
- These standards ensure reliability and maintainability across the suite.
105
-
106
- ## Versioning & Compatibility Policy
107
-
108
- Wexample packages follow **Semantic Versioning** (SemVer):
109
-
110
- - **MAJOR**: Breaking changes
111
- - **MINOR**: New features, backward compatible
112
- - **PATCH**: Bug fixes, backward compatible
113
-
114
- We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
115
-
116
- ## Changelog
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
137
-
138
- If you discover a security vulnerability, please email contact@wexample.com.
139
-
140
- **Do not** open public issues for security vulnerabilities.
141
-
142
- We take security seriously and will respond promptly to verified reports.
143
-
144
- ## Privacy & Telemetry
145
-
146
- This package does **not** collect any telemetry or usage data.
147
-
148
- Your privacy is respected — no data is transmitted to external services.
149
-
150
- ## Support Channels
151
-
152
- - **GitHub Issues**: Bug reports and feature requests
153
- - **GitHub Discussions**: Questions and community support
154
- - **Documentation**: Comprehensive guides and API reference
155
- - **Email**: contact@wexample.com for general inquiries
156
-
157
- Community support is available through GitHub Discussions.
158
-
159
- ## Contribution Guidelines
160
-
161
- We welcome contributions to the Wexample suite!
162
-
163
- ### How to Contribute
164
-
165
- 1. **Fork** the repository
166
- 2. **Create** a feature branch
167
- 3. **Make** your changes
168
- 4. **Test** thoroughly
169
- 5. **Submit** a pull request
170
-
171
- ## Maintainers & Authors
172
-
173
- Maintained by the Wexample team and community contributors.
174
-
175
- See [CONTRIBUTORS.md](CONTRIBUTORS.md) for the full list of contributors.
176
-
177
- ## License
178
-
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.
182
-
183
- ## Useful Links
184
-
185
- - **Homepage**: https://github.com/wexample/python-api
186
- - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
187
- - **Issue Tracker**: https://github.com/wexample/python-api/issues
188
- - **Discussions**: https://github.com/wexample/python-api/discussions
189
- - **PyPI**: [pypi.org/project/wexample-api](https://pypi.org/project/wexample-api/)
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.87
213
- - wexample-prompt: ==0.0.96
214
-
215
-
216
- # About us
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.
221
-
222
- 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.
223
-
File without changes