Skip to content

Commit 0434fe9

Browse files
authored
Add testdata as url that can be used for download (#84)
* Add testdata as url that can be used for download
1 parent a248974 commit 0434fe9

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

ecmwf/opendata/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010

1111
from .client import Client
1212

13-
__version__ = "0.3.26"
13+
__version__ = "0.3.27"
1414

1515
__all__ = ["Client"]

ecmwf/opendata/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def warning_once(*args, did_you_mean=None):
6868
ONCE.add(repr(args))
6969

7070
if did_you_mean:
71-
(words, vocabulary) = did_you_mean
71+
words, vocabulary = did_you_mean
7272

7373
def levenshtein(a, b):
7474
if len(a) == 0:

ecmwf/opendata/urls.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"aws": "https://ecmwf-forecasts.s3.eu-central-1.amazonaws.com",
2020
"ecmwf-esuites": "https://xdiss.ecmwf.int/ecpds/home/opendata",
2121
"google": "https://storage.googleapis.com/ecmwf-open-data",
22+
"ecmwf-testdata": "https://data.ecmwf.int/forecasts/testdata",
2223
}
2324

2425
if os.path.exists(DOT_ECMWF_OPENDATA):

0 commit comments

Comments
 (0)