oe-python-template-example 0.2.17__py3-none-any.whl → 0.3.1__py3-none-any.whl
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.
- {oe_python_template_example-0.2.17.dist-info → oe_python_template_example-0.3.1.dist-info}/METADATA +15 -12
- {oe_python_template_example-0.2.17.dist-info → oe_python_template_example-0.3.1.dist-info}/RECORD +5 -5
- {oe_python_template_example-0.2.17.dist-info → oe_python_template_example-0.3.1.dist-info}/WHEEL +0 -0
- {oe_python_template_example-0.2.17.dist-info → oe_python_template_example-0.3.1.dist-info}/entry_points.txt +0 -0
- {oe_python_template_example-0.2.17.dist-info → oe_python_template_example-0.3.1.dist-info}/licenses/LICENSE +0 -0
{oe_python_template_example-0.2.17.dist-info → oe_python_template_example-0.3.1.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: oe-python-template-example
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.3.1
|
4
4
|
Summary: 🧠 Example project scaffolded and kept up to date with OE Python Template (oe-python-template).
|
5
5
|
Project-URL: Homepage, https://oe-python-template-example.readthedocs.io/en/latest/
|
6
6
|
Project-URL: Documentation, https://oe-python-template-example.readthedocs.io/en/latest/
|
@@ -132,8 +132,8 @@ Projects generated with this template come with a comprehensive development tool
|
|
132
132
|
13. Software Bill of Materials (SBOM) generated in [CycloneDX](https://cyclonedx.org/) and [SPDX](https://spdx.dev/) formats with [cyclonedx-python](https://github.com/CycloneDX/cyclonedx-python) resp. [trivy](https://trivy.dev/latest/), published as release artifacts
|
133
133
|
14. Version and release management with [bump-my-version](https://callowayproject.github.io/bump-my-version/)
|
134
134
|
15. Changelog and release notes generated with [git-cliff](https://git-cliff.org/)
|
135
|
-
16. Documentation generated with [Sphinx](https://www.sphinx-doc.org/en/master/) including reference documentation and
|
136
|
-
17. Documentation published to [Read The Docs](https://readthedocs.org/)
|
135
|
+
16. Documentation generated with [Sphinx](https://www.sphinx-doc.org/en/master/) including reference documentation for the library, CLI, and API
|
136
|
+
17. Documentation published to [Read The Docs](https://readthedocs.org/) including generation of PDF and single page HTML versions
|
137
137
|
18. Interactive OpenAPI specification with [Swagger](https://swagger.io/)
|
138
138
|
19. Python package published to [PyPI](https://pypi.org/)
|
139
139
|
20. Docker images published to [Docker.io](https://hub.docker.com/) and [GitHub Container Registry](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry) with [artifact attestations](https://docs.github.com/en/actions/security-for-github-actions/using-artifact-attestations/using-artifact-attestations-to-establish-provenance-for-builds)
|
@@ -250,7 +250,7 @@ This project is designed with operational excellence in mind, using modern Pytho
|
|
250
250
|
a. [Simple Python script](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/blob/main/examples/script.py)
|
251
251
|
b. [Streamlit web application](https://oe-python-template-example.streamlit.app/) deployed on [Streamlit Community Cloud](https://streamlit.io/cloud)
|
252
252
|
c. [Jupyter](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/blob/main/examples/notebook.ipynb) and [Marimo](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/blob/main/examples/notebook.py) notebook
|
253
|
-
2.
|
253
|
+
2. Complete reference documentation [for the library](https://oe-python-template-example.readthedocs.io/en/latest/lib_reference.html), [for the CLI](https://oe-python-template-example.readthedocs.io/en/latest/cli_reference.html) and [for the API](https://oe-python-template-example.readthedocs.io/en/latest/api_reference_v1.html) on Read the Docs
|
254
254
|
3. [Transparent test coverage](https://app.codecov.io/gh/helmut-hoffer-von-ankershoffen/oe-python-template-example) including unit and E2E tests (reported on Codecov)
|
255
255
|
4. Matrix tested with [multiple python versions](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/blob/main/noxfile.py) to ensure compatibility (powered by [Nox](https://nox.thea.codes/en/stable/))
|
256
256
|
5. Compliant with modern linting and formatting standards (powered by [Ruff](https://github.com/astral-sh/ruff))
|
@@ -286,19 +286,16 @@ message = Service.get_hello_world()
|
|
286
286
|
console.print(f"[blue]{message}[/blue]")
|
287
287
|
```
|
288
288
|
|
289
|
-
[Show script code](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/blob/main/examples/script.py) -
|
290
|
-
|
289
|
+
[Show script code](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/blob/main/examples/script.py) - [Read the reference documentation](https://oe-python-template-example.readthedocs.io/en/latest/lib_reference.html)
|
290
|
+
|
291
291
|
|
292
292
|
### Streamlit App
|
293
293
|
|
294
|
-
Serve the functionality provided by OE Python Template Example in the web by
|
295
|
-
easily integrating the service into a Streamlit application.
|
294
|
+
Serve the functionality provided by OE Python Template Example in the web by easily integrating the service into a Streamlit application.
|
296
295
|
|
297
|
-
[Try it out!](https://oe-python-template-example.streamlit.app) -
|
298
|
-
[Show the code](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/blob/main/examples/streamlit.py)
|
296
|
+
[Try it out!](https://oe-python-template-example.streamlit.app) - [Show the code](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/blob/main/examples/streamlit.py)
|
299
297
|
|
300
298
|
... or serve the app locally
|
301
|
-
|
302
299
|
```shell
|
303
300
|
uv sync --all-extras # Install streamlit dependency part of the examples extra, see pyproject.toml
|
304
301
|
uv run streamlit run examples/streamlit.py # Serve on localhost:8501, opens browser
|
@@ -374,6 +371,9 @@ uvx oe-python-template-example openapi --output-format=json
|
|
374
371
|
uvx oe-python-template-example serve
|
375
372
|
```
|
376
373
|
|
374
|
+
See the [reference documentation of the CLI](https://oe-python-template-example.readthedocs.io/en/latest/cli_reference.html) for detailed documentation of all CLI commands and options.
|
375
|
+
|
376
|
+
|
377
377
|
### Environment
|
378
378
|
|
379
379
|
The service loads environment variables including support for .env files.
|
@@ -444,6 +444,9 @@ echo "Shutting down the API container ..."
|
|
444
444
|
docker compose down
|
445
445
|
```
|
446
446
|
|
447
|
+
* See the [reference documentation of the API](https://oe-python-template-example.readthedocs.io/en/latest/api_reference_v1.html) for detailed documentation of all API operations and parameters.
|
448
|
+
|
449
|
+
|
447
450
|
## Extra: Lorem Ipsum
|
448
451
|
|
449
452
|
Nothing yet
|
@@ -457,7 +460,7 @@ Nothing yet
|
|
457
460
|
* Check out the [API Reference](https://oe-python-template-example.readthedocs.io/en/latest/api_reference_v1.html) with detailed documentation of all API operations and parameters.
|
458
461
|
* Our [release notes](https://oe-python-template-example.readthedocs.io/en/latest/release-notes.html) provide a complete log of recent improvements and changes.
|
459
462
|
* In case you want to help us improve 🧠 OE Python Template Example: The [contribution guidelines](https://oe-python-template-example.readthedocs.io/en/latest/contributing.html) explain how to setup your development environment and create pull requests.
|
460
|
-
* We gratefully acknowledge the [open source projects](
|
463
|
+
* We gratefully acknowledge the [open source projects](https://oe-python-template-example.readthedocs.io/en/latest/attributions.html) that this project builds upon. Thank you to all these wonderful contributors!
|
461
464
|
|
462
465
|
## Star History
|
463
466
|
|
{oe_python_template_example-0.2.17.dist-info → oe_python_template_example-0.3.1.dist-info}/RECORD
RENAMED
@@ -5,8 +5,8 @@ oe_python_template_example/constants.py,sha256=6uQHr2CRgzWQWhUQCRRKiPuFhzKB2iblZ
|
|
5
5
|
oe_python_template_example/models.py,sha256=IbegPBFJq0OCAWS70V-ozl6coMd0dC2OsHZY-nIumGs,846
|
6
6
|
oe_python_template_example/service.py,sha256=WY7W6MG55cp0sfNVBWSkelXJcZ3dXIY5MQemUeQC-MA,1622
|
7
7
|
oe_python_template_example/settings.py,sha256=mQu7Bl2EhR6taQLqbaK1s86Ngn3kLVeEoMyhCqbydig,751
|
8
|
-
oe_python_template_example-0.
|
9
|
-
oe_python_template_example-0.
|
10
|
-
oe_python_template_example-0.
|
11
|
-
oe_python_template_example-0.
|
12
|
-
oe_python_template_example-0.
|
8
|
+
oe_python_template_example-0.3.1.dist-info/METADATA,sha256=vtTKSAoZscwFTEbklvbaSzFAH4Vtx3JViRhmLBpzcnQ,30855
|
9
|
+
oe_python_template_example-0.3.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
10
|
+
oe_python_template_example-0.3.1.dist-info/entry_points.txt,sha256=S2eCPB45b1Wgj_GsDRFAN-e4h7dBA5UPxT8od98erDE,82
|
11
|
+
oe_python_template_example-0.3.1.dist-info/licenses/LICENSE,sha256=5H409K6xzz9U5eUaoAHQExNkoWJRlU0LEj6wL2QJ34s,1113
|
12
|
+
oe_python_template_example-0.3.1.dist-info/RECORD,,
|
{oe_python_template_example-0.2.17.dist-info → oe_python_template_example-0.3.1.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|