from datagate import DatagateClient# With API key (recommended)client = DatagateClient(api_key="dg_live_...")# With JWT access tokenclient = DatagateClient(access_token="eyJ...")# With custom base URL (for local development)client = DatagateClient( api_key="dg_live_...", base_url="http://localhost:8080",)