Source code for action0.open_meteo.geocoding.client

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

from __future__ import annotations

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


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