🤖 Exploration.
Project description
🤖 askhelmut
[!TIP] 📚 Online documentation - 📖 PDF Manual
Exploration.
Use Cases:
- Fast and easy to use project setup
- Consistent update of already scaffolded projects to benefit from new and improved features.
- Dummy CLI application and service demonstrating example usage of the generated directory structure and build pipeline
Scaffolding Instructions
Step 1: Install uv package manager and copier
if [[ "$OSTYPE" == "darwin"* ]]; then # Install dependencies for macOS X
if ! command -v brew &> /dev/null; then ## Install Homebrew if not present
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then # Install dependencies for Linux
sudo apt-get update -y && sudo apt-get install curl -y # Install curl
fi
if ! command -v uvx &> /dev/null; then # Install uv package manager if not present
curl -LsSf https://astral.sh/uv/install.sh | sh
source $HOME/.local/bin/env
fi
uv tool install copier # Install copier as global tool
Step 2: Now create an empty repo on GitHub and clone it to your local machine in a directory of your choice. Change to that directory.
Step 3: Scaffold the project
copier copy gh:helmut-hoffer-von-ankershoffen/oe-python-template .
Step 4: Setup the local environment
uv run nox -s setup_eev
Step 5: Perform inital commit and push
git add .
git commit -m "feat: Initial commit"
Visit your GitHub repository and check the Actions tab. The CI workflow should fail at the SonarQube step, as this external service is not yet configured for our new repository.
Step 6: Follow the instructions in SERVICE_CONNECTIONS.md to setup the connections to external services such as Cloudcov, SonarQube Cloud, Read The Docs, Docker.io, GHCR.io and Streamlit Community Cloud.
Step 7: Release the first versions
./bump
Notes:
- You can remove this section post having successfully scafolded your project.
- The following sections refer to the dummy application and service provided by this template. Use them as inspiration and adapt them to your own project.
Overview
Adding askhelmut to your project as a dependency is easy.
uv add askhelmut # 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 askhelmut # add dependency to your project
Executing the command line interface (CLI) is just as easy:
uvx askhelmut
The CLI provides extensive help:
uvx askhelmut --help # all CLI commands
uvx askhelmut command --help # all options for command
Highlights
- Exploration.
- Various Examples:
- [Simple Python script]https://github.com/helmut-hoffer-von-ankershoffen/askhelmut/blob/main/examples/script.py)
- Streamlit web application deployed on Streamlit Community Cloud
- Jupyter and Marimo notebook
- Complete reference documenation 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)
- A-grade code quality in security, maintainability, and reliability with low technical debt and low codesmell (verified by SonarQube)
- 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
Minimal Python Script:
"""Example script demonstrating the usage of the service provided by askhelmut."""
from dotenv import load_dotenv
from rich.console import Console
from askhelmut import Service
console = Console()
load_dotenv()
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 askhelmut 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
Notebooks
Jupyter
... or run within VSCode
uv sync --all-extras # Install ipykernel dependency part of the examples extra, 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).
Command Line Interface (CLI)
Run with uvx
Show available commands:
uvx askhelmut --help
Execute commands:
uvx askhelmut hello-world
uvx askhelmut hello-world --json
uvx askhelmut echo "Lorem Ipsum"
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/askhelmut --help
docker run helmuthva/askhelmut hello-world
docker run helmuthva/askhelmut hello-world --json
docker run helmuthva/askhelmut echo "Lorem"
Execute command:
docker run --env THE_VAR=MY_VALUE helmuthva/askhelmut echo "Lorem Ipsum"
Or use docker compose
The .env is passed through from the host to the Docker container.
docker compose up
docker compose run askhelmut --help
Extra: Lorem Ipsum
Dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit amet ipsum mauris. Maecenas congue ligula ac quam.
Further Reading
- Check out the reference with detailed documentation of public classes and functions.
- Our release notes provide a complete log of recent improvements and changes.
- In case you want to help us improve 🤖 askhelmut: The contribution guidelines explain how to setup your development environment and create pull requests.
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 askhelmut-0.0.2.tar.gz.
File metadata
- Download URL: askhelmut-0.0.2.tar.gz
- Upload date:
- Size: 192.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
764d8c1ff14e9db2169af4dbdb4d56904c0fb5cbf79d35986d3d0900f1a24a7f
|
|
| MD5 |
152a44bb50bf63e63616e2cf58bc2035
|
|
| BLAKE2b-256 |
9a41ced65e6e94921ff62f44b99e893e23ee7ebc9dfd3f0df4bcb968dec96537
|
File details
Details for the file askhelmut-0.0.2-py3-none-any.whl.
File metadata
- Download URL: askhelmut-0.0.2-py3-none-any.whl
- Upload date:
- Size: 9.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5edda5b2a1ba67376956d1181401b4786b8a54c08aa58e143f8f5b948c6d2db1
|
|
| MD5 |
a3454f06586ec4fdcd77e3a940a0757c
|
|
| BLAKE2b-256 |
ed49f4eed1b349406f1a046d5c12fe7ffec2125a6a38507eb33fc10344d3a932
|