The Roark Analytics API gives you access to the same API that powers the award winning Roark Analytics platform.
from os import getenv
from roark_analytics import Client
client = Client(bearer_token=getenv("API_TOKEN"))
from os import getenv
from roark_analytics import AsyncClient
client = AsyncClient(bearer_token=getenv("API_TOKEN"))