summaryrefslogtreecommitdiff
path: root/tests/test_api.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_api.py')
-rw-r--r--tests/test_api.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/test_api.py b/tests/test_api.py
new file mode 100644
index 0000000..c3f3766
--- /dev/null
+++ b/tests/test_api.py
@@ -0,0 +1,20 @@
+import cdsapi
+import os
+
+def test_request():
+
+ c = cdsapi.Client()
+
+ r = c.retrieve(
+ "reanalysis-era5-single-levels",
+ {
+ "variable": "2t",
+ "product_type": "reanalysis",
+ "date": "2012-12-01",
+ "time": "12:00"
+ },
+ )
+
+ r.download("test.grib")
+
+ assert os.path.getsize("test.grib") == 2076600