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

* Add timeout to session.get in Client.status which otherwise hangs on connection error * Also add timeouts in Result.update and Result.delete which presumably would also hang * Reorganise Client.robust to...

Updated default verify in Client class to True (instead of None) The line "self.verify = True if verify else False" takes verify, if it is None, the result of this...

I have been using the cdsapi for a long time now, but since today, I get the error message. ``` 2022-02-24 16:02:11,614 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/reanalysis-era5-single-levels 2022-02-24 16:02:11,646 INFO...

Hello all, This is a question rather than issue, but is there a way to send requests into the queue (i.e. as from the website) from the python api? Thank...

Hello, When I use `wait_until_complete=False`, I get the following error: ``` 2022-02-02 12:29:22,550 INFO Welcome to the CDS 2022-02-02 12:29:22,551 INFO Sending request to https://cds.climate.copernicus.eu/api/v2/resources/reanalysis-era5-land Traceback (most recent call last):...

https://github.com/ecmwf/cdsapi/blob/f3b94a9bc40f8d56b0d1ac8cc8bc84765509ef05/cdsapi/api.py#L511 There should be a while breake condition to exit the while loop for an unknown reply state label. Apparently there are some cases for which the reply is different...

I want to download CMIP6 a subset data between two dates using the cdsapi but didn't have success. I tried to download with this configuration: ``` c.retrieve( 'projections-cmip6', { 'temporal_resolution':...

Closes #46. With this patch, creating a `Client` no longer affects the external loggers' level: ```python In [1]: import logging ...: import cdsapi ...: ...: # external logger initially at...

Per title, some basic interrogation functions to pull the request IDs and statuses. Useful if you are running a script that requests something and want it to resume later when...

Dear colleagues, is there a way to access CAMS NRT data on a different raster grid resolution then 0.4? For instance, in 0.125 grid resolution? I used to download these...