oe-python-template-example 0.4.11__py3-none-any.whl → 0.4.14__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.
@@ -1,4 +1,4 @@
1
- """Copier template to scaffold Python projects compliant with best practices and modern tooling."""
1
+ """Example project scaffolded and kept up to date with OE Python Template (oe-python-template)."""
2
2
 
3
3
  from .constants import MODULES_TO_INSTRUMENT
4
4
  from .utils.boot import boot
@@ -12,14 +12,13 @@ boot(MODULES_TO_INSTRUMENT)
12
12
  logger = get_logger(__name__)
13
13
 
14
14
  cli = typer.Typer(help="Command Line Interface of OE Python Template Example")
15
- prepare_cli(cli, f"🧠 OE Python Template Example v{__version__} - built with love in Berlin 🐻")
16
15
 
17
16
 
18
17
  if find_spec("nicegui") and find_spec("webview") and not __is_running_in_container__:
19
18
 
20
19
  @cli.command()
21
20
  def gui() -> None:
22
- """Start graphical user interface (GUI) in native window."""
21
+ """Open graphical user interface (GUI)."""
23
22
  from .utils import gui_run # noqa: PLC0415
24
23
 
25
24
  gui_run(native=True, with_api=False, title="OE Python Template Example", icon="🧠")
@@ -37,7 +36,7 @@ if find_spec("marimo"):
37
36
  host: Annotated[str, typer.Option(help="Host to bind the server to")] = "127.0.0.1",
38
37
  port: Annotated[int, typer.Option(help="Port to bind the server to")] = 8001,
39
38
  ) -> None:
40
- """Start notebook in web browser."""
39
+ """Run notebook server."""
41
40
  console.print(f"Starting marimo notebook server at http://{host}:{port}")
42
41
  uvicorn.run(
43
42
  create_marimo_app(),
@@ -46,6 +45,8 @@ if find_spec("marimo"):
46
45
  )
47
46
 
48
47
 
48
+ prepare_cli(cli, f"🧠 OE Python Template Example v{__version__} - built with love in Berlin 🐻")
49
+
49
50
  if __name__ == "__main__": # pragma: no cover
50
51
  try:
51
52
  cli()
@@ -1,13 +1,14 @@
1
- """Constants for the OE Python Template Example."""
1
+ """Static configuration of OE Python Template Example."""
2
2
 
3
3
  from pathlib import Path
4
4
 
5
- MODULES_TO_INSTRUMENT = ["oe_python_template_example.hello"]
6
-
7
- API_VERSIONS = {
5
+ # Configuration required by oe-python-template
6
+ API_VERSIONS: dict[str, str] = {
8
7
  "v1": "1.0.0",
9
8
  "v2": "2.0.0",
10
9
  }
11
-
10
+ MODULES_TO_INSTRUMENT: list[str] = ["oe_python_template_example.hello"]
12
11
  NOTEBOOK_FOLDER = Path(__file__).parent.parent.parent / "examples"
13
12
  NOTEBOOK_APP = Path(__file__).parent.parent.parent / "examples" / "notebook.py"
13
+
14
+ # Project specific configuration
@@ -16,7 +16,7 @@ from ._service import Service
16
16
 
17
17
  logger = get_logger(__name__)
18
18
 
19
- cli = typer.Typer(name="system", help="System commands")
19
+ cli = typer.Typer(name="system", help="Determine health, info and further utillities.")
20
20
 
21
21
  _service = Service()
22
22
 
@@ -1,4 +1,4 @@
1
- """Constants used throughout."""
1
+ """Constants generated from the environment at runtime used throughout the project."""
2
2
 
3
3
  import os
4
4
  import sys
@@ -1,5 +1,6 @@
1
1
  """Logging configuration and utilities."""
2
2
 
3
+ import contextlib
3
4
  import logging as python_logging
4
5
  import os
5
6
  import typing as t
@@ -63,11 +64,13 @@ def _validate_file_name(file_name: str | None) -> str | None:
63
64
  else:
64
65
  try:
65
66
  file_path.touch(exist_ok=True)
66
- file_path.unlink()
67
67
  except OSError as e:
68
68
  message = f"File {file_path.absolute()} cannot be created: {e}"
69
69
  raise ValueError(message) from e
70
70
 
71
+ with contextlib.suppress(OSError): # Parallel execution e.g. in tests can create race
72
+ file_path.unlink()
73
+
71
74
  return file_name
72
75
 
73
76
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: oe-python-template-example
3
- Version: 0.4.11
3
+ Version: 0.4.14
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/
@@ -49,7 +49,7 @@ Classifier: Programming Language :: Python :: 3.13
49
49
  Classifier: Typing :: Typed
50
50
  Requires-Python: <4.0,>=3.11
51
51
  Requires-Dist: fastapi[all,standard]>=0.115.12
52
- Requires-Dist: logfire[system-metrics]>=3.13.1
52
+ Requires-Dist: logfire[system-metrics]>=3.14.1
53
53
  Requires-Dist: nicegui[native]>=2.15.0
54
54
  Requires-Dist: opentelemetry-instrumentation-fastapi>=0.53b0
55
55
  Requires-Dist: opentelemetry-instrumentation-httpx>=0.53b0
@@ -61,13 +61,13 @@ Requires-Dist: opentelemetry-instrumentation-urllib3>=0.53b0
61
61
  Requires-Dist: opentelemetry-instrumentation-urllib>=0.53b0
62
62
  Requires-Dist: psutil>=7.0.0
63
63
  Requires-Dist: pydantic-settings>=2.9.1
64
- Requires-Dist: sentry-sdk>=2.26.1
64
+ Requires-Dist: sentry-sdk>=2.27.0
65
65
  Requires-Dist: typer>=0.15.1
66
66
  Requires-Dist: uptime>=3.0.1
67
67
  Provides-Extra: examples
68
68
  Requires-Dist: jinja2>=3.1.6; extra == 'examples'
69
69
  Requires-Dist: jupyter>=1.1.1; extra == 'examples'
70
- Requires-Dist: marimo>=0.13.0; extra == 'examples'
70
+ Requires-Dist: marimo>=0.13.1; extra == 'examples'
71
71
  Requires-Dist: matplotlib>=3.10.1; extra == 'examples'
72
72
  Requires-Dist: streamlit>=1.44.1; extra == 'examples'
73
73
  Description-Content-Type: text/markdown
@@ -80,7 +80,7 @@ Description-Content-Type: text/markdown
80
80
  [![License](https://img.shields.io/github/license/helmut-hoffer-von-ankershoffen/oe-python-template-example?logo=opensourceinitiative&logoColor=3DA639&labelColor=414042&color=A41831)
81
81
  ](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/blob/main/LICENSE)
82
82
  [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/oe-python-template-example.svg?logo=python&color=204361&labelColor=1E2933)](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/blob/main/noxfile.py)
83
- [![CI](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/actions/workflows/test-and-report.yml/badge.svg)](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/actions/workflows/test-and-report.yml)
83
+ [![CI](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/actions/workflows/ci-cd.yml/badge.svg)](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/actions/workflows/ci-cd.yml)
84
84
  [![Read the Docs](https://img.shields.io/readthedocs/oe-python-template-example)](https://oe-python-template-example.readthedocs.io/en/latest/)
85
85
  [![Quality Gate](https://sonarcloud.io/api/project_badges/measure?project=helmut-hoffer-von-ankershoffen_oe-python-template-example&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=helmut-hoffer-von-ankershoffen_oe-python-template-example)
86
86
  [![Security](https://sonarcloud.io/api/project_badges/measure?project=helmut-hoffer-von-ankershoffen_oe-python-template-example&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=helmut-hoffer-von-ankershoffen_oe-python-template-example)
@@ -119,29 +119,137 @@ Description-Content-Type: text/markdown
119
119
  ---
120
120
 
121
121
 
122
- Example project scaffolded and kept up to date with OE Python Template
123
- (oe-python-template).
122
+ Example project scaffolded and kept up to date with OE Python Template (oe-python-template).
123
+
124
+ ### Scaffolding
125
+
126
+ This [Copier](https://copier.readthedocs.io/en/stable/) template enables you to quickly generate (scaffold) a Python package with fully functioning build and test automation:
127
+
128
+ 1. Projects generated from this template can be [easily updated](https://copier.readthedocs.io/en/stable/updating/) to benefit from improvements and new features of the template.
129
+ 2. During project generation, you can flexibly configure naming of the Python distribution, import package, main author, GitHub repository, organization, and many other aspects to match your specific requirements (see [copier.yml](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template/blob/main/copier.yml) for all available options).
130
+
131
+ ### Development Infrastructure
132
+
133
+ Projects generated with this template come with a comprehensive development toolchain and quality assurance framework that supports the entire software development lifecycle - from coding and testing to documentation, release management, and compliance auditing. This infrastructure automates routine tasks, enforces code quality standards, and streamlines the path to production:
134
+
135
+ 1. Linting with [Ruff](https://github.com/astral-sh/ruff)
136
+ 2. Static type checking with [mypy](https://mypy.readthedocs.io/en/stable/)
137
+ 3. Complete set of [pre-commit](https://pre-commit.com/) hooks including [detect-secrets](https://github.com/Yelp/detect-secrets) and [pygrep](https://github.com/pre-commit/pygrep-hooks)
138
+ 4. Unit and E2E testing with [pytest](https://docs.pytest.org/en/stable/) including parallel test execution
139
+ 5. Matrix testing in multiple environments with [nox](https://nox.thea.codes/en/stable/)
140
+ 6. Test coverage reported with [Codecov](https://codecov.io/) and published as release artifact
141
+ 7. CI/CD pipeline automated with [GitHub Actions](https://github.com/features/actions) with parallel and reusable workflows, including scheduled testing, release automation, and multiple reporting channels and formats
142
+ 8. CI/CD pipeline can be run locally with [act](https://github.com/nektos/act)
143
+ 9. Code quality and security checks with [SonarQube](https://www.sonarsource.com/products/sonarcloud) and [GitHub CodeQL](https://codeql.github.com/)
144
+ 10. Dependency monitoring and vulnerability scanning with [pip-audit](https://pypi.org/project/pip-audit/), [trivy](https://trivy.dev/latest/), [Renovate](https://github.com/renovatebot/renovate), and [GitHub Dependabot](https://docs.github.com/en/code-security/getting-started/dependabot-quickstart-guide)
145
+ 11. Error monitoring and profiling with [Sentry](https://sentry.io/) (optional)
146
+ 12. Logging and metrics with [Logfire](https://logfire.dev/) (optional)
147
+ 13. Prepared for uptime monitoring and scheduled tests with [betterstack](https://betterstack.com/) or alternatives
148
+ 14. Licenses of dependencies extracted with [pip-licenses](https://pypi.org/project/pip-licenses/), matched with allow list, and published as release artifacts in CSV and JSON format for further compliance checks
149
+ 15. Generation of attributions from extracted licenses
150
+ 16. 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
151
+ 17. Version and release management with [bump-my-version](https://callowayproject.github.io/bump-my-version/)
152
+ 18. Changelog and release notes generated with [git-cliff](https://git-cliff.org/)
153
+ 19. Documentation generated with [Sphinx](https://www.sphinx-doc.org/en/master/) including reference documentation for the library, CLI, and API
154
+ 20. Documentation published to [Read The Docs](https://readthedocs.org/) including generation of PDF and single page HTML versions
155
+ 21. Documentation including dynamic badges, setup instructions, contribution guide and security policy
156
+ 22. Interactive OpenAPI specification with [Swagger](https://swagger.io/)
157
+ 23. Python package published to [PyPI](https://pypi.org/)
158
+ 24. Multi-stage build of fat (all extras) and slim (no extras) multi-arch (arm64 and amd64) Docker images, running non-root within immutable container
159
+ 25. 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)
160
+ 26. One-click development environments with [Dev Containers](https://code.visualstudio.com/docs/devcontainers/containers) and [GitHub Codespaces](https://github.com/features/codespaces)
161
+ 27. Settings for use with [VSCode](https://code.visualstudio.com/)
162
+ 28. Settings and custom instructions for use with [GitHub Copilot](https://docs.github.com/en/copilot/customizing-copilot/adding-repository-custom-instructions-for-github-copilot)
163
+ 29. API deployed as serverless function to [Vercel](https://vercel.com/) (optional)
164
+
165
+ ### Multi-head Application Features
166
+
167
+ Beyond development tooling, projects generated with this template include the code, documentation, and configuration of a fully functioning service and multi-head application. This reference implementation serves as a starting point for your own business logic with modern patterns and enterprise practices already in place:
168
+
169
+ 1. Usable as library with "Hello" module exposing a simple service that can say "Hello, world!" and echo utterances.
170
+ 2. Comfortable command-line interface (CLI) with [Typer](https://typer.tiangolo.com/)
171
+ 3. Versioned webservice API with [FastAPI](https://fastapi.tiangolo.com/)
172
+ 4. Cross-platform Graphical User Interface (GUI) with
173
+ [NiceGUI](https://nicegui.io/) running in a browser or native window
174
+ 5. [Interactive Jupyter notebook](https://jupyter.org/) and [reactive Marimo notebook](https://marimo.io/)
175
+ 6. Simple Web UI with [Streamlit](https://streamlit.io/)
176
+ 7. Modular architecture auto-discovers and registers services, CLI commands, API routes and GUI pages exposed by domain modules
177
+ 8. Validation and settings management with [pydantic](https://docs.pydantic.dev/)
178
+ 9. System module providing aggregate health and info to the runtime, compiled settings, and further info provided by domain modules
179
+ 10. Health and Info available via command, webservice API (info passsword protected) and GUI
180
+ 11. Flexible logging and instrumentation, including support for [Sentry](https://sentry.io/) and [Logfire](https://logfire.dev/)
181
+ 12. Hello service demonstrates use of custom real time metrics collected via Logfire
182
+ 13. Configuration to run the CLI and API in a Docker container including setup for [Docker Compose](https://docs.docker.com/get-started/docker-concepts/the-basics/what-is-docker-compose/)
183
+
184
+ Explore [here](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example) for what's generated out of the box. While this template comes with multiple application interfaces ("heads") - Library, CLI, API, GUI, notebooks, and Streamlit; running native and within Docker - they're included to demonstrate capabilities and provide implementation patterns. You're expected to use this as a foundation, keeping only the interfaces relevant to your project's requirements. The modular architecture makes it easy to:
185
+
186
+ 1. Remove unnecessary interfaces to simplify your codebase
187
+ 2. Adapt existing interfaces to your specific use cases
188
+ 3. Focus on your core business logic without reimplementing infrastructure
189
+ 4. Add new interfaces while leveraging the existing patterns
190
+
191
+
192
+ ## Generate a new project
193
+
194
+ To generate, build and release a fully functioning project in a few minutes, follow these 5 steps:
195
+
196
+ **Step 1**: Execute the following command to install or update tooling.
197
+ ```shell
198
+ # Install Homebrew, uv package manager, copier and further dev tools
199
+ curl -LsSf https://raw.githubusercontent.com/helmut-hoffer-von-ankershoffen/oe-python-template/HEAD/install.sh | sh
200
+ ```
201
+
202
+ **Step 2**: [Create a repository on GitHub](https://docs.github.com/en/repositories/creating-and-managing-repositories/creating-a-new-repository), clone to your local machine, and change into it's directory.
203
+
204
+ **Step 3**: Execute the following command to generate a new project based on this template.
205
+ ```shell
206
+ # Ensure to stand in your freshly created git repository before executing this command
207
+ copier copy --trust gh:helmut-hoffer-von-ankershoffen/oe-python-template .
208
+ ```
209
+
210
+ **Step 4**: Execute the following commands to push your initial commit to GitHub.
211
+ ```shell
212
+ git add .
213
+ git commit -m "chore: Initial commit"
214
+ git push
215
+ ```
216
+
217
+ Check the [Actions tab](https://github.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/actions) of your GitHub repository: The CI/CD workflow of your project is already running!
218
+
219
+ The workflow will fail at the SonarQube step, as this external service is not yet configured for our new repository. We will configure SonarQube and other services in the next step!
220
+
221
+ Notes:
222
+ 1. Check out [this manual](https://docs.github.com/en/authentication/managing-commit-signature-verification/telling-git-about-your-signing-key) on how to set up signed commits
223
+
224
+ **Step 5**: Follow the [instructions](SERVICE_CONNECTIONS.md) to wire up
225
+ external services such as CloudCov, SonarQube Cloud, Read The Docs, Docker.io, and Streamlit Community Cloud.
226
+
227
+ **Step 6**: Release the first version of your project
228
+ ```shell
229
+ make bump
230
+ ```
231
+ Notes:
232
+ 1. You can remove the above sections - from "Scaffolding" to this notes - post having successfully generated your project.
233
+ 2. The following sections refer to the dummy application and service generated into the `tests` and `src` folder by this template.
234
+ Use the documentation and code as inspiration, adapt to your business logic, or remove and start documenting and coding from scratch.
235
+
124
236
 
125
237
  ## Overview
126
238
 
127
- Adding OE Python Template Example to your project as a dependency is easy. See
128
- below for usage examples.
239
+ Adding OE Python Template Example to your project as a dependency is easy. See below for usage examples.
129
240
 
130
241
  ```shell
131
242
  uv add oe-python-template-example # add dependency to your project
132
243
  ```
133
244
 
134
- If you don't have uv installed follow
135
- [these instructions](https://docs.astral.sh/uv/getting-started/installation/).
136
- If you still prefer pip over the modern and fast package manager
137
- [uv](https://github.com/astral-sh/uv), you can install the library like this:
245
+ If you don't have uv installed follow [these instructions](https://docs.astral.sh/uv/getting-started/installation/). If you still prefer pip over the modern and fast package manager [uv](https://github.com/astral-sh/uv), you can install the library like this:
246
+
138
247
 
139
248
  ```shell
140
249
  pip install oe-python-template-example # add dependency to your project
141
250
  ```
142
251
 
143
- Executing the command line interface (CLI) in an isolated Python environment is
144
- just as easy:
252
+ Executing the command line interface (CLI) in an isolated Python environment is just as easy:
145
253
 
146
254
  ```shell
147
255
  uvx oe-python-template-example hello world # prints "Hello, world! [..]"
@@ -1,7 +1,7 @@
1
- oe_python_template_example/__init__.py,sha256=_Z3Xb-x95UODU66avOiwROVaouk_s0ZNB25KFnPoS40,226
1
+ oe_python_template_example/__init__.py,sha256=orD-ncFvTpoahULPPPJdCvrvhcpLpJO-UJKWEZ1XVVM,225
2
2
  oe_python_template_example/api.py,sha256=4Rja-8Zu_rHxsIVcSbgb5R1wsbWNku9K1afuoKULx2M,2197
3
- oe_python_template_example/cli.py,sha256=hZUPTuuUkIOpgTN6dP3nUh7gflxe6pdY2trruq3Eqhs,1709
4
- oe_python_template_example/constants.py,sha256=eRFVkR2qwafucpx5ppJSohr5wpSRm4yh1deLpOTep9A,346
3
+ oe_python_template_example/cli.py,sha256=QcZTiAflzukv0XpYzPDacdB30dMneYbTguaWrUoBJFA,1682
4
+ oe_python_template_example/constants.py,sha256=baIFtSiE94ABLSdO4rUXmT6hhu-QaUwpI65B51ZUwwQ,458
5
5
  oe_python_template_example/hello/__init__.py,sha256=F7aJ_uhTPPnFLT_4GjI2GzjAmKrUhfe4KxqzrljuCVo,485
6
6
  oe_python_template_example/hello/_api.py,sha256=0woWJedvP1-PyXJruQITp4_mO37Viqiq8jTDaXqxVVo,2367
7
7
  oe_python_template_example/hello/_cli.py,sha256=D1RZyz8sk7wpH1a9VDx1QtsNorOr9owxK8N7SxaaMWM,1200
@@ -12,7 +12,7 @@ oe_python_template_example/hello/_service.py,sha256=o9sgk-yFX5zRi06sAOdSPqkgT93n
12
12
  oe_python_template_example/hello/_settings.py,sha256=Q14SqSvBJYFuofA-tbvBwO30sVygSaXsgaYC7x1uCfo,1562
13
13
  oe_python_template_example/system/__init__.py,sha256=7e2z8HATzy3dAIBXy5PM9rlCC7Rbu8m8NapROdrf3Wk,624
14
14
  oe_python_template_example/system/_api.py,sha256=pBBCL1gXM7W5dgJqBLKuNFWES0pQF8mbUgQ7H7oHwh8,3714
15
- oe_python_template_example/system/_cli.py,sha256=0cGwSicK0j7P53SMm9nSyQqj0WYpHKvFvkISCcjeTPU,6959
15
+ oe_python_template_example/system/_cli.py,sha256=fVO_TSIyiaMJ2ACeQ4gPy4QQZjmeBVnsxxsViuNGe8I,6990
16
16
  oe_python_template_example/system/_gui.py,sha256=9U4QMkl1mVJargg_gQ7U8tMlvec4b1cqkTgRcmmyTTc,678
17
17
  oe_python_template_example/system/_service.py,sha256=f-EtWEAanajo4S2KeGm26K9_RezYgPza1qVqPRBOFvY,6376
18
18
  oe_python_template_example/system/_settings.py,sha256=MwMAJYifJ6jGImeSh4e9shmIXmiUSuQGHXz_Ts0mSdk,901
@@ -20,11 +20,11 @@ oe_python_template_example/utils/__init__.py,sha256=oM8v1ozMOeBQG-EbBtEGbnuGk52m
20
20
  oe_python_template_example/utils/_api.py,sha256=GSI-HPtSdTFv0qP5aTDPa2WS3ewVa1slusG6dvxSu0Y,2474
21
21
  oe_python_template_example/utils/_cli.py,sha256=J_mFtXZ1gGeovGrE5i3wlokTOBfiTTKEz5magiRP7GA,2091
22
22
  oe_python_template_example/utils/_console.py,sha256=u0-utcdRmVu4rabrYUyNOx8yPxLhxB3E92m22kSCwPQ,293
23
- oe_python_template_example/utils/_constants.py,sha256=fPS1leVqg7NRo_FFE3Xs3QI7un5_YRrY8cKQAfThwgg,3247
23
+ oe_python_template_example/utils/_constants.py,sha256=WfXarYsOP1z3iv-DNEw7FNBekLXEz2rHYICAaqdoQd8,3301
24
24
  oe_python_template_example/utils/_di.py,sha256=J1-f6xtbnR88VfRAsRMl5m6eqt-Lf3c7ABSJOxNzlvU,2399
25
25
  oe_python_template_example/utils/_gui.py,sha256=mm7-PFPZsVAYISENM91ezlefs_Ax5dEOPzT7-u5xQe0,7749
26
26
  oe_python_template_example/utils/_health.py,sha256=35QOWe2r5InrEpGtuVMym9dI5aRHS0HWf4BHBRAUIj0,4102
27
- oe_python_template_example/utils/_log.py,sha256=9aalm3FzkIgx38Em4a49m5SrXvg0DiTzodTPTICUNuc,5042
27
+ oe_python_template_example/utils/_log.py,sha256=t6CAlSvnwZhls0cPWupodXWGGjNlMHF8T9W69ngIV-E,5156
28
28
  oe_python_template_example/utils/_logfire.py,sha256=wZYNVowQx7kh3XJoJ59FjUKdrta7tp6cXOJRUT6lDU8,2128
29
29
  oe_python_template_example/utils/_notebook.py,sha256=IZOQTRKVV5htwXZIpZIZbAAOo86NK1L8vYkg1o7HW1Q,2114
30
30
  oe_python_template_example/utils/_process.py,sha256=40R0NZMqJUn0iUPERzohSUpJgU1HcJApIg1HipIxFCw,941
@@ -33,8 +33,8 @@ oe_python_template_example/utils/_service.py,sha256=atHAejvBucKXjzhsMSdOBBFa7rRD
33
33
  oe_python_template_example/utils/_settings.py,sha256=owFoaHEzJnVD3EVyOWF4rfIY7g6eLnU6rN0m4VHhCbA,2464
34
34
  oe_python_template_example/utils/boot.py,sha256=Qgq1sjT8d3fcfibnMyx5CVUJ_KKXgFI3ozZUIJbhh4I,2921
35
35
  oe_python_template_example/utils/.vendored/bottle.py,sha256=kZAZmh3nRzCUf-9IKGpv0yqlMciZMA_DNaaMDdcQmt0,175437
36
- oe_python_template_example-0.4.11.dist-info/METADATA,sha256=fsUUG3H2Of5BLy39kok-9tZARJf0ibYMjx6RGIDDh_k,26187
37
- oe_python_template_example-0.4.11.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
38
- oe_python_template_example-0.4.11.dist-info/entry_points.txt,sha256=S2eCPB45b1Wgj_GsDRFAN-e4h7dBA5UPxT8od98erDE,82
39
- oe_python_template_example-0.4.11.dist-info/licenses/LICENSE,sha256=5H409K6xzz9U5eUaoAHQExNkoWJRlU0LEj6wL2QJ34s,1113
40
- oe_python_template_example-0.4.11.dist-info/RECORD,,
36
+ oe_python_template_example-0.4.14.dist-info/METADATA,sha256=oqdI0KzobvPxvXW-ULiT94SxqR1u_z5dbR9g_4rSS54,36051
37
+ oe_python_template_example-0.4.14.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
38
+ oe_python_template_example-0.4.14.dist-info/entry_points.txt,sha256=S2eCPB45b1Wgj_GsDRFAN-e4h7dBA5UPxT8od98erDE,82
39
+ oe_python_template_example-0.4.14.dist-info/licenses/LICENSE,sha256=5H409K6xzz9U5eUaoAHQExNkoWJRlU0LEj6wL2QJ34s,1113
40
+ oe_python_template_example-0.4.14.dist-info/RECORD,,