diff --git a/openhexa/toolbox/era5/__init__.py b/openhexa/toolbox/era5/__init__.py index 71dee32..e69de29 100644 --- a/openhexa/toolbox/era5/__init__.py +++ b/openhexa/toolbox/era5/__init__.py @@ -1,15 +0,0 @@ -import logging - -import cdsapi - -logging.basicConfig(level=logging.DEBUG, format="%(name)s %(asctime)s %(levelname)s %(message)s") -log = logging.getLogger(__name__) - -BASE_URL = "https://cds-beta.climate.copernicus.eu/api" - - -class ERA5: - def __init__(self, key: str): - self.client = cdsapi.Client( - key=key, - )