🧠 Example project scaffolded and kept up to date with OE Python Template (oe-python-template).
Project description
🧠 OE Python Template Example
[!TIP] 📚 Online documentation - 📖 PDF Manual
[!NOTE] 🧠 This project was scaffolded using the template oe-python-template with copier.
Example project scaffolded and kept up to date with OE Python Template (oe-python-template).
Overview
Adding OE Python Template Example to your project as a dependency is easy. See below for usage examples.
uv add oe-python-template-example # add dependency to your project
If you don't have uv installed follow these instructions. If you still prefer pip over the modern and fast package manager uv, you can install the library like this:
pip install oe-python-template-example # add dependency to your project
Executing the command line interface (CLI) in an isolated Python environment is just as easy:
uvx oe-python-template-example hello world # prints "Hello, world! [..]"
uvx oe-python-template-example hello echo "Lorem Ipsum" # echos "Lorem Ipsum"
uvx oe-python-template-example gui # opens the graphical user interface (GUI)
uvx --with "oe-python-template-example[examples]" oe-python-template-example gui # opens the graphical user interface (GUI) with support for scientific computing
uvx oe-python-template-example system serve # serves web API
uvx oe-python-template-example system serve --port=4711 # serves web API on port 4711
uvx oe-python-template-example system openapi # serves web API on port 4711
Notes:
- The API is versioned, mounted at
/api/v1resp./api/v2 - While serving the web API go to
http://127.0.0.1:8000/api/v1/hello-world
to see the respons of the
hello-worldoperation. - Interactive documentation is provided at http://127.0.0.1:8000/api/docs
The CLI provides extensive help:
uvx oe-python-template-example --help # all CLI commands
uvx oe-python-template-example hello world --help # help for specific command
uvx oe-python-template-example hello echo --help
uvx oe-python-template-example gui --help
uvx oe-python-template-example system serve --help
uvx oe-python-template-example system openapi --help
Operational Excellence
This project is designed with operational excellence in mind, using modern Python tooling and practices. It includes:
- Various examples demonstrating usage: a. Simple Python script b. Streamlit web application deployed on Streamlit Community Cloud c. Jupyter and Marimo notebook
- Complete reference documentation for the library, for the CLI and for the API on Read the Docs
- Transparent test coverage including unit and E2E tests (reported on Codecov)
- Matrix tested with multiple python versions to ensure compatibility (powered by Nox)
- Compliant with modern linting and formatting standards (powered by Ruff)
- Up-to-date dependencies (monitored by Renovate and Dependabot)
- A-grade code quality in security, maintainability, and reliability with low technical debt and codesmell (verified by SonarQube)
- Additional code security checks using CodeQL
- Security Policy
- License compliant with the Open Source Initiative (OSI)
- 1-liner for installation and execution of command line interface (CLI) via uv(x) or Docker
- Setup for developing inside a devcontainer included (supports VSCode and GitHub Codespaces)
Usage Examples
The following examples run from source - clone this repository using
git clone git@github.com:helmut-hoffer-von-ankershoffen/oe-python-template-example.git.
Minimal Python Script:
"""Example script demonstrating the usage of the service provided by OE Python Template Example."""
from rich.console import Console
from oe_python_template_example.hello import Service
console = Console()
message = Service.get_hello_world()
console.print(f"[blue]{message}[/blue]")
Show script code - Read the reference documentation
Streamlit App
Serve the functionality provided by OE Python Template Example in the web by easily integrating the service into a Streamlit application.
... or serve the app locally
uv sync --all-extras # Install streamlit dependency part of the examples extra, see pyproject.toml
uv run streamlit run examples/streamlit.py # Serve on localhost:8501, opens browser
Vercel Serverless Function
Serve the API as a serverless function on Vercel
Notebooks
Jupyter
... or run within VSCode
uv sync --all-extras # Install dependencies required for examples such as Juypyter kernel, see pyproject.toml
Install the Jupyter extension for VSCode
Click on examples/notebook.ipynb in VSCode and run it.
Marimo
Execute the notebook as a WASM based web app
uv sync --all-extras # Install ipykernel dependency part of the examples extra, see pyproject.toml
uv run marimo run examples/notebook.py --watch # Serve on localhost:2718, opens browser
or edit interactively in your browser
uv sync --all-extras # Install ipykernel dependency part of the examples extra, see pyproject.toml
uv run marimo edit examples/notebook.py --watch # Edit on localhost:2718, opens browser
... or edit interactively within VSCode
Install the Marimo extension for VSCode
Click on examples/notebook.py in VSCode and click on the caret next to the Run
icon above the code (looks like a pencil) > "Start in marimo editor" (edit).
... or without prior cloning of the repository
uvx marimo run https://raw.githubusercontent.com/helmut-hoffer-von-ankershoffen/oe-python-template-example/refs/heads/main/examples/notebook.py
Command Line Interface (CLI)
Run with uvx
Show available commands:
uvx oe-python-template-example --help
Execute commands:
uvx oe-python-template-example hello world
uvx oe-python-template-example hello echo --help
uvx oe-python-template-example hello echo "Lorem"
uvx oe-python-template-example hello echo "Lorem" --json
uvx oe-python-template-example gui
uvx --with "oe-python-template-example[examples]" oe-python-template-example gui # opens the graphical user interface (GUI) with support for scientific computing
uvx oe-python-template-example system info
uvx oe-python-template-example system health
uvx oe-python-template-example system openapi
uvx oe-python-template-example system openapi --output-format=json
uvx oe-python-template-example system serve
See the reference documentation of the CLI for detailed documentation of all CLI commands and options.
Environment
The service loads environment variables including support for .env files.
cp .env.example .env # copy example file
echo "THE_VAR=MY_VALUE" > .env # overwrite with your values
Now run the usage examples again.
Run with Docker
You can as well run the CLI within Docker.
docker run helmuthva/oe-python-template-example --help
docker run helmuthva/oe-python-template-example hello world
docker run helmuthva/oe-python-template-example hello echo --help
docker run helmuthva/oe-python-template-example hello echo "Lorem"
docker run helmuthva/oe-python-template-example hello echo "Lorem" --json
docker run helmuthva/oe-python-template-example system info
docker run helmuthva/oe-python-template-example system health
docker run helmuthva/oe-python-template-example system openapi
docker run helmuthva/oe-python-template-example system openapi --output-format=json
docker run helmuthva/oe-python-template-example system serve
The default Docker image includes all extras. Additionally a slim image is provided, with no extras. Run as follows
docker run helmuthva/oe-python-template-example-slim --help
docker run helmuthva/oe-python-template-example-slim hello world
You can pass environment variables as parameters:
docker run --env OE_PYTHON_TEMPLATE_EXAMPLE_HELLO_LANGUAGE=de_DE helmuthva/oe-python-template-example hello world
docker run --env OE_PYTHON_TEMPLATE_EXAMPLE_HELLO_LANGUAGE=en_US helmuthva/oe-python-template-example hello world
A docker compose stack is provided. Clone this repository using
git clone git@github.com:helmut-hoffer-von-ankershoffen/oe-python-template-example.git
and enter the repository folder.
The .env is passed through from the host to the Docker container.
docker compose run --remove-orphans oe-python-template-example --help
docker compose run --remove-orphans oe-python-template-example hello world
docker compose run --remove-orphans oe-python-template-example hello echo --help
docker compose run --remove-orphans oe-python-template-example hello echo "Lorem"
docker compose run --remove-orphans oe-python-template-example hello echo "Lorem" --json
docker compose run --remove-orphans oe-python-template-example system info
docker compose run --remove-orphans oe-python-template-example system health
docker compose run --remove-orphans oe-python-template-example system openapi
docker compose run --remove-orphans oe-python-template-example system openapi --output-format=json
echo "Running OE Python Template Example's API container as a daemon ..."
docker compose up -d
echo "Waiting for the API server to start ..."
sleep 5
echo "Checking health of v1 API ..."
curl http://127.0.0.1:8000/api/v1/healthz
echo ""
echo "Saying hello world with v1 API ..."
curl http://127.0.0.1:8000/api/v1/hello/world
echo ""
echo "Swagger docs of v1 API ..."
curl http://127.0.0.1:8000/api/v1/docs
echo ""
echo "Checking health of v2 API ..."
curl http://127.0.0.1:8000/api/v2/healthz
echo ""
echo "Saying hello world with v1 API ..."
curl http://127.0.0.1:8000/api/v2/hello/world
echo ""
echo "Swagger docs of v2 API ..."
curl http://127.0.0.1:8000/api/v2/docs
echo ""
echo "Shutting down the API container ..."
docker compose down
- See the reference documentation of the API for detailed documentation of all API operations and parameters.
Extra: Lorem Ipsum
Nothing yet
Further Reading
- Inspect our security policy with detailed documentation of checks, tools and principles.
- Check out the CLI reference with detailed documentation of all CLI commands and options.
- Check out the library reference with detailed documentation of public classes and functions.
- Check out the API reference with detailed documentation of all API operations and parameters.
- Our release notes provide a complete log of recent improvements and changes.
- In case you want to help us improve 🧠 OE Python Template Example: The contribution guidelines explain how to setup your development environment and create pull requests.
- We gratefully acknowledge the open source projects that this project builds upon. Thank you to all these wonderful contributors!
Star History
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file oe_python_template_example-0.5.2.tar.gz.
File metadata
- Download URL: oe_python_template_example-0.5.2.tar.gz
- Upload date:
- Size: 89.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61bac57ab928830206eb2ec5c1a40ed8b03c00e32279949e7de0681a299d2dc9
|
|
| MD5 |
b5c949ff307b98bde11c06d4974571c1
|
|
| BLAKE2b-256 |
af69457e5e5ac894761d3b101108106c88023c214c159418204b89eef361c1bb
|
File details
Details for the file oe_python_template_example-0.5.2-py3-none-any.whl.
File metadata
- Download URL: oe_python_template_example-0.5.2-py3-none-any.whl
- Upload date:
- Size: 95.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3177854acc885b4e318051381daab3b6204aa7f63f4d5210f5cda3e49d9425c1
|
|
| MD5 |
968eddfd94848f114a7ece614e998216
|
|
| BLAKE2b-256 |
5d7eaf4a128be04cf2ee7cdf72b1809b5f4f46c30f490e0bca69a3c1f701ee3a
|