Quickstart
Install (from source)
From the repository root (where pyproject.toml lives):
python -m venv .venv
# Windows: .venv\Scripts\activate
# macOS/Linux: source .venv/bin/activate
python -m pip install -U pip
pip install -e .
Run
Single domain (writes to results/)
wayparam -d example.com
Multiple domains
wayparam -l domains.txt
Stream to stdout (no files)
wayparam -d example.com --stdout --no-files
JSONL output (better for automation)
wayparam -d example.com --stdout --no-files --format jsonl
Be gentle with Wayback (recommended with VPNs)
wayparam -d example.com --rps 1 --concurrency 2
Notes about output
- stdout is reserved for machine-readable results only when
--stdoutis enabled. - logs, hints and optional stats go to stderr to keep pipelines clean.
Example safe pipeline:
wayparam -d example.com --stdout --no-files | sort -u > urls.txt