Install
requests.
Quick start
Full method surface
dict.
Constructor options
Idempotency
Pass anidempotency_key to make retries safe. Repeat the same key
within 24 hours to get the cached response.
Error handling
Non-2xx responses raiseApiError. The exception carries the status,
machine code, the parsed body, and retry_after (populated on
429).
429 and 5xx. Set
max_retries=0 on the constructor to disable.
Docstrings
Every method has a full docstring. In a REPL:Type checking
The package ships apy.typed marker. mypy --strict and pyright
both pass against the public surface. Response bodies are typed as
Dict[str, Any]; for stricter typing, layer the OpenAPI spec
through datamodel-code-generator or openapi-python-client.
Repository and issues
- Source: github.com/landedfees/sdk-python
- Issues: github.com/landedfees/sdk-python/issues
- License: Apache-2.0