From 56f330b1d3ade2fbcad58d25bb66918c32720b63 Mon Sep 17 00:00:00 2001 From: Yann Forget Date: Wed, 6 Nov 2024 11:23:15 +0100 Subject: [PATCH] fix(era5): remove __init__.py content --- openhexa/toolbox/era5/__init__.py | 15 --------------- 1 file changed, 15 deletions(-) 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, - )