Quickstart (Recommended: PyPI)¶
1. Install from PyPI¶
optional but recommended: create a Python virtual environment first
python3 -m venv .venv && source .venv/bin/activate
pip install wspr-ai-lite
2. Ingest Data¶
Fetch WSPRNet monthly archives and load them into DuckDB:
wspr-ai-lite ingest --from 2014-07 --to 2014-07 --db data/wspr.duckdb
3. Launch the Dashboard¶
wspr-ai-lite ui --db data/wspr.duckdb --port 8501
👉 For developers who want to hack on the code directly, see Developer Setup.