Source code for action0.open_meteo.historical_weather.client

# generated by action0-client-openapi v0.1.2 from historical-weather.yml — do not edit

from __future__ import annotations

from action0.client import APIClient
from action0.client import BackendT_co


[docs] class HistoricalWeatherClient(APIClient[BackendT_co]): """The Open-Meteo Historical Weather API API client.""" def __init__( self, backend: BackendT_co, base_url: str = "https://archive-api.open-meteo.com", ) -> None: """ :param backend: any sync, async or Twisted backend :param base_url: the API root """ super().__init__(backend, base_url)