Generated client for the Artifacts MMO API.
uv run openapi-burrito generate examples/artifactsmmo/openapi.json -o examples/artifactsmmo/client -y# Public endpoints (no auth required)
uv run python examples/artifactsmmo/main.py
# With authentication (get token from https://artifactsmmo.com/account)
export ARTIFACTS_TOKEN="your_token_here"
uv run python examples/artifactsmmo/main.pyThe demo:
- Checks server status (public)
- Lists items (public)
- Lists your characters (requires token)
The demo uses middleware to inject the Bearer token. See docs/authentication.md for other patterns.