cdsapi icon indicating copy to clipboard operation
cdsapi copied to clipboard

Python API to access the Copernicus Climate Data Store (CDS)

Results 61 cdsapi issues
Sort by recently updated
recently updated
newest added

### Is your feature request related to a problem? Please describe. According to documentation the configuation file has to be at a fixed place: Paste the 2 line code into...

enhancement

### Is your feature request related to a problem? Please describe. When attempting to automatically download data (e.g., ERA5) using the cdsapi, I consistently find it necessary to implement a...

enhancement

This configuration option disables certificate verification, which should never be done. Having it be part of the example config in the readme makes it easy to accidentally copy and paste...

contributor

### What happened? A test download: import cdsapi c=cdsapi.Client() url = c.retrieve('reanalysis-era5-pressure-levels', { "variable": "temperature", "pressure_level": "1000", "product_type": "reanalysis", "date": "2017-12-01/2017-12-08", "time": "12:00", "format": "netcdf" }, 'era5_P_1lvl_1week.nc') The data downloads...

bug

Use of pkg_resources triggers DeprecationWarning and according to https://setuptools.pypa.io/en/latest/pkg_resources.html, pkg_resources should be replaced by importlib. Minimal steps to reproduce warning: - Install pytest - create a file (let's say 'test.py')...

The library is able to help with downloading data to a local file. Sometimes the target is not local, however. It would be great to allow not only writing to...

This PR moves project metadata to pyproject.toml. Both setup.py and setup.cfg are no longer needed, and removed. Other details: - Build sdist and wheels using PyPA's [build](https://pypa-build.readthedocs.io/en/stable/) tool, which are...

contributor

### Is your feature request related to a problem? Please describe. Yes, the current issue is the lack of visibility regarding the waiting time for a request to be processed...

enhancement

### What maintenance does this project need? Importing pkg_resources is deprecated: ``` ../../../../../opt/hostedtoolcache/Python/3.12.3/x64/lib/python3.12/site-packages/cdsapi/api.py:17 /opt/hostedtoolcache/Python/3.12.3/x64/lib/python3.12/site-packages/cdsapi/api.py:17: DeprecationWarning: pkg_resources is deprecated as an API. See https://setuptools.pypa.io/en/latest/pkg_resources.html import pkg_resources ``` https://github.com/ecmwf/cdsapi/pull/74 seems to partly...

### What happened? I'm unable to get this to work for .netcdf e.g. I take the example in the README.md, run it (it works), then switch format to 'netcdf', and...

bug