wexample-api 0.0.84__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.
Files changed (30) hide show
  1. wexample_api-0.0.86/PKG-INFO +171 -0
  2. wexample_api-0.0.86/README.md +150 -0
  3. {wexample_api-0.0.84 → wexample_api-0.0.86}/pyproject.toml +3 -3
  4. wexample_api-0.0.84/PKG-INFO +0 -108
  5. wexample_api-0.0.84/README.md +0 -87
  6. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/__init__.py +0 -0
  7. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/__pycache__/__init__.py +0 -0
  8. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/common/__init__.py +0 -0
  9. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/common/__pycache__/__init__.py +0 -0
  10. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/common/abstract_gateway.py +0 -0
  11. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/common/http_request_payload.py +0 -0
  12. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/const/__init__.py +0 -0
  13. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/const/__pycache__/__init__.py +0 -0
  14. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/const/http.py +0 -0
  15. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/demo/__init__.py +0 -0
  16. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/demo/demo_simple_gateway.py +0 -0
  17. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/enums/__init__.py +0 -0
  18. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/enums/__pycache__/__init__.py +0 -0
  19. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/enums/http.py +0 -0
  20. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/errors/__init__.py +0 -0
  21. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/errors/gateway_authentication_error.py +0 -0
  22. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/errors/gateway_connexion_error.py +0 -0
  23. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/middleware/__init__.py +0 -0
  24. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/models/__init__.py +0 -0
  25. {wexample_api-0.0.84 → wexample_api-0.0.86}/src/wexample_api/py.typed +0 -0
  26. {wexample_api-0.0.84 → wexample_api-0.0.86}/tests/common/__init__.py +0 -0
  27. {wexample_api-0.0.84 → wexample_api-0.0.86}/tests/common/test_http_request_payload.py +0 -0
  28. {wexample_api-0.0.84 → wexample_api-0.0.86}/tests/demo/__init__.py +0 -0
  29. {wexample_api-0.0.84 → wexample_api-0.0.86}/tests/demo/test_demo_simple_gateway.py +0 -0
  30. {wexample_api-0.0.84 → wexample_api-0.0.86}/tests/new_architecture/__init__.py +0 -0
@@ -0,0 +1,171 @@
1
+ Metadata-Version: 2.1
2
+ Name: wexample-api
3
+ Version: 0.0.86
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>=1.0.0
16
+ Requires-Dist: wexample-prompt>=1.0.0
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
+ # api
23
+
24
+ Version: 0.0.86
25
+
26
+ Some python basic helpers for apis.
27
+
28
+ ## Table of Contents
29
+
30
+ - [Tests](#tests)
31
+ - [Suite Integration](#suite-integration)
32
+ - [Dependencies](#dependencies)
33
+ - [Versioning](#versioning)
34
+ - [License](#license)
35
+ - [Suite Integration](#suite-integration)
36
+ - [Suite Signature](#suite-signature)
37
+ - [Roadmap](#roadmap)
38
+ - [Status Compatibility](#status-compatibility)
39
+ - [Useful Links](#useful-links)
40
+ - [Migration Notes](#migration-notes)
41
+
42
+ ## Tests
43
+
44
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
45
+
46
+ ### Installation
47
+
48
+ First, install the required testing dependencies:
49
+ ```bash
50
+ .venv/bin/python -m pip install pytest pytest-cov
51
+ ```
52
+
53
+ ### Basic Usage
54
+
55
+ Run all tests with coverage:
56
+ ```bash
57
+ .venv/bin/python -m pytest --cov --cov-report=html
58
+ ```
59
+
60
+ ### Common Commands
61
+ ```bash
62
+ # Run tests with coverage for a specific module
63
+ .venv/bin/python -m pytest --cov=your_module
64
+
65
+ # Show which lines are not covered
66
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
67
+
68
+ # Generate an HTML coverage report
69
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
70
+
71
+ # Combine terminal and HTML reports
72
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
73
+
74
+ # Run specific test file with coverage
75
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
76
+ ```
77
+
78
+ ### Viewing HTML Reports
79
+
80
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
81
+
82
+ ### Coverage Threshold
83
+
84
+ To enforce a minimum coverage percentage:
85
+ ```bash
86
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
87
+ ```
88
+
89
+ This will cause the test suite to fail if coverage drops below 80%.
90
+
91
+ ## Integration in the Suite
92
+
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.
94
+
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.
98
+
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: >=1.0.0
107
+ - wexample-prompt: >=1.0.0
108
+
109
+ ## Versioning & Compatibility Policy
110
+
111
+ Wexample packages follow **Semantic Versioning** (SemVer):
112
+
113
+ - **MAJOR**: Breaking changes
114
+ - **MINOR**: New features, backward compatible
115
+ - **PATCH**: Bug fixes, backward compatible
116
+
117
+ We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
118
+
119
+ ## License
120
+
121
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
122
+
123
+ Free to use in both personal and commercial projects.
124
+
125
+ ## Integration in the Suite
126
+
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.
128
+
129
+ ### Related Packages
130
+
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.
132
+
133
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
134
+
135
+ # About us
136
+
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.
138
+
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.
140
+
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.
142
+
143
+ ## Known Limitations & Roadmap
144
+
145
+ Current limitations and planned features are tracked in the GitHub issues.
146
+
147
+ See the [project roadmap](https://github.com/wexample/python-api/issues) for upcoming features and improvements.
148
+
149
+ ## Status & Compatibility
150
+
151
+ **Maturity**: Production-ready
152
+
153
+ **Python Support**: >=3.10
154
+
155
+ **OS Support**: Linux, macOS, Windows
156
+
157
+ **Status**: Actively maintained
158
+
159
+ ## Useful Links
160
+
161
+ - **Homepage**: https://github.com/wexample/python-api
162
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
163
+ - **Issue Tracker**: https://github.com/wexample/python-api/issues
164
+ - **Discussions**: https://github.com/wexample/python-api/discussions
165
+ - **PyPI**: [pypi.org/project/api](https://pypi.org/project/api/)
166
+
167
+ ## Migration Notes
168
+
169
+ When upgrading between major versions, refer to the migration guides in the documentation.
170
+
171
+ Breaking changes are clearly documented with upgrade paths and examples.
@@ -0,0 +1,150 @@
1
+ # api
2
+
3
+ Version: 0.0.86
4
+
5
+ Some python basic helpers for apis.
6
+
7
+ ## Table of Contents
8
+
9
+ - [Tests](#tests)
10
+ - [Suite Integration](#suite-integration)
11
+ - [Dependencies](#dependencies)
12
+ - [Versioning](#versioning)
13
+ - [License](#license)
14
+ - [Suite Integration](#suite-integration)
15
+ - [Suite Signature](#suite-signature)
16
+ - [Roadmap](#roadmap)
17
+ - [Status Compatibility](#status-compatibility)
18
+ - [Useful Links](#useful-links)
19
+ - [Migration Notes](#migration-notes)
20
+
21
+ ## Tests
22
+
23
+ This project uses `pytest` for testing and `pytest-cov` for code coverage analysis.
24
+
25
+ ### Installation
26
+
27
+ First, install the required testing dependencies:
28
+ ```bash
29
+ .venv/bin/python -m pip install pytest pytest-cov
30
+ ```
31
+
32
+ ### Basic Usage
33
+
34
+ Run all tests with coverage:
35
+ ```bash
36
+ .venv/bin/python -m pytest --cov --cov-report=html
37
+ ```
38
+
39
+ ### Common Commands
40
+ ```bash
41
+ # Run tests with coverage for a specific module
42
+ .venv/bin/python -m pytest --cov=your_module
43
+
44
+ # Show which lines are not covered
45
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing
46
+
47
+ # Generate an HTML coverage report
48
+ .venv/bin/python -m pytest --cov=your_module --cov-report=html
49
+
50
+ # Combine terminal and HTML reports
51
+ .venv/bin/python -m pytest --cov=your_module --cov-report=term-missing --cov-report=html
52
+
53
+ # Run specific test file with coverage
54
+ .venv/bin/python -m pytest tests/test_file.py --cov=your_module --cov-report=term-missing
55
+ ```
56
+
57
+ ### Viewing HTML Reports
58
+
59
+ After generating an HTML report, open `htmlcov/index.html` in your browser to view detailed line-by-line coverage information.
60
+
61
+ ### Coverage Threshold
62
+
63
+ To enforce a minimum coverage percentage:
64
+ ```bash
65
+ .venv/bin/python -m pytest --cov=your_module --cov-fail-under=80
66
+ ```
67
+
68
+ This will cause the test suite to fail if coverage drops below 80%.
69
+
70
+ ## Integration in the Suite
71
+
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.
73
+
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.
77
+
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: >=1.0.0
86
+ - wexample-prompt: >=1.0.0
87
+
88
+ ## Versioning & Compatibility Policy
89
+
90
+ Wexample packages follow **Semantic Versioning** (SemVer):
91
+
92
+ - **MAJOR**: Breaking changes
93
+ - **MINOR**: New features, backward compatible
94
+ - **PATCH**: Bug fixes, backward compatible
95
+
96
+ We maintain backward compatibility within major versions and provide clear migration guides for breaking changes.
97
+
98
+ ## License
99
+
100
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
101
+
102
+ Free to use in both personal and commercial projects.
103
+
104
+ ## Integration in the Suite
105
+
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.
107
+
108
+ ### Related Packages
109
+
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.
111
+
112
+ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the complete package ecosystem.
113
+
114
+ # About us
115
+
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.
117
+
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.
119
+
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.
121
+
122
+ ## Known Limitations & Roadmap
123
+
124
+ Current limitations and planned features are tracked in the GitHub issues.
125
+
126
+ See the [project roadmap](https://github.com/wexample/python-api/issues) for upcoming features and improvements.
127
+
128
+ ## Status & Compatibility
129
+
130
+ **Maturity**: Production-ready
131
+
132
+ **Python Support**: >=3.10
133
+
134
+ **OS Support**: Linux, macOS, Windows
135
+
136
+ **Status**: Actively maintained
137
+
138
+ ## Useful Links
139
+
140
+ - **Homepage**: https://github.com/wexample/python-api
141
+ - **Documentation**: [docs.wexample.com](https://docs.wexample.com)
142
+ - **Issue Tracker**: https://github.com/wexample/python-api/issues
143
+ - **Discussions**: https://github.com/wexample/python-api/discussions
144
+ - **PyPI**: [pypi.org/project/api](https://pypi.org/project/api/)
145
+
146
+ ## Migration Notes
147
+
148
+ When upgrading between major versions, refer to the migration guides in the documentation.
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.84"
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,8 +21,8 @@ dependencies = [
21
21
  "attrs>=23.1.0",
22
22
  "cattrs>=23.1.0",
23
23
  "requests",
24
- "wexample-helpers==0.0.93",
25
- "wexample-prompt==0.0.98",
24
+ "wexample-helpers>=1.0.0",
25
+ "wexample-prompt>=1.0.0",
26
26
  ]
27
27
 
28
28
  [project.readme]
@@ -1,108 +0,0 @@
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
-
@@ -1,87 +0,0 @@
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
-