NovantClient
NovantClient is the main entry point for the Novant API.
Create a single instance with your API key and reuse it across
calls:
from novant import NovantClient
client = NovantClient(api_key="ak_xxx")Arguments
| Argument | Default | Description |
|---|---|---|
api_key |
— | Your Novant API key |
timeout |
30 |
Request timeout in seconds |
Example
# Default timeout
client = NovantClient(api_key="ak_xxx")
# Custom timeout
client = NovantClient(api_key="ak_xxx", timeout=60)