Source code for action0.open_meteo.seasonal.client

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

from __future__ import annotations

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


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