From 0a15590c7a450c34286ae465a45d45d082c52f55 Mon Sep 17 00:00:00 2001 From: gantian127 Date: Fri, 1 Nov 2024 16:48:20 -0600 Subject: [PATCH] update cdsapi key file link --- utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils.py b/utils.py index 8ae256f..1dbbbb7 100644 --- a/utils.py +++ b/utils.py @@ -19,7 +19,7 @@ def install_api_key(): # create CDS API key file cds_key = input('Enter Your CDS API Key: ') - cds_url = 'https://cds.climate.copernicus.eu/api/v2' + cds_url = "https://cds.climate.copernicus.eu/api" cds_config_content = 'url: {} \nkey: {}'.format(cds_url, cds_key) cds_config_path = os.path.join(home_dir, '.cdsapirc')