News

Complexipy can also be used directly from your Python code. The high-level helper functions below wrap the Rust core and return lightweight Python classes that behave like regular dataclasses.
Describe the bug from polygon import RESTClient from dataclasses import asdict client = RESTClient () date = "2025-06-12" quotes = [asdict (q) for q in client.list_quotes ("AAPL", limit=1)] print ...