A minimal, developer-friendly Python starter template for building Prefect workflows, CLI tools, or reusable libraries — fast.
Perfect for automation, orchestration, experiments, and learning without boilerplate overload.
This repo is designed to be flexible. You can use it as:
quickstart run, quickstart deploy, etc.)QuickStart is a clean Python starter project that includes:
Use it to bootstrap:
```text quickstart/ ├─ quickstart/ │ ├─ init.py │ ├─ flows.py # Prefect flows │ ├─ tasks.py # Prefect tasks │ ├─ cli.py # CLI entry point │ └─ core.py # Shared library logic ├─ tests/ ├─ pyproject.toml ├─ requirements.txt ├─ requirements-dev.txt └─ README.md