oe-python-template-example 0.3.0__py3-none-any.whl → 0.3.2__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.3.0.dist-info → oe_python_template_example-0.3.2.dist-info}/METADATA +12 -9
- {oe_python_template_example-0.3.0.dist-info → oe_python_template_example-0.3.2.dist-info}/RECORD +5 -5
- {oe_python_template_example-0.3.0.dist-info → oe_python_template_example-0.3.2.dist-info}/WHEEL +0 -0
- {oe_python_template_example-0.3.0.dist-info → oe_python_template_example-0.3.2.dist-info}/entry_points.txt +0 -0
- {oe_python_template_example-0.3.0.dist-info → oe_python_template_example-0.3.2.dist-info}/licenses/LICENSE +0 -0
{oe_python_template_example-0.3.0.dist-info → oe_python_template_example-0.3.2.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.
|
3
|
+
Version: 0.3.2
|
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/
|
@@ -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
|
{oe_python_template_example-0.3.0.dist-info → oe_python_template_example-0.3.2.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.3.
|
9
|
-
oe_python_template_example-0.3.
|
10
|
-
oe_python_template_example-0.3.
|
11
|
-
oe_python_template_example-0.3.
|
12
|
-
oe_python_template_example-0.3.
|
8
|
+
oe_python_template_example-0.3.2.dist-info/METADATA,sha256=3zoU2s1OX-GsJIYcs5dpngxbnap3cYOgbFG85jEIu6o,30855
|
9
|
+
oe_python_template_example-0.3.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
10
|
+
oe_python_template_example-0.3.2.dist-info/entry_points.txt,sha256=S2eCPB45b1Wgj_GsDRFAN-e4h7dBA5UPxT8od98erDE,82
|
11
|
+
oe_python_template_example-0.3.2.dist-info/licenses/LICENSE,sha256=5H409K6xzz9U5eUaoAHQExNkoWJRlU0LEj6wL2QJ34s,1113
|
12
|
+
oe_python_template_example-0.3.2.dist-info/RECORD,,
|
{oe_python_template_example-0.3.0.dist-info → oe_python_template_example-0.3.2.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|
File without changes
|