Getting Started
Welcome to the Numex documentation. Get up and running in minutes.
Installation
pip install numex-sdk
Quick Start
import numex
client = numex.Client(api_key="your_api_key")
data = client.query("SELECT * FROM metrics WHERE ts > now() - 1h")
print(data.to_dataframe())
Authentication
All API requests require an API key. Pass it via the Authorization header or the SDK client constructor.