Page History
Before trying anything else check make sure you're using the most up to date versions
using Python 3
using the most up to date version of the CDS API
...
If you are still experiencing issues it's time to look at the error messages.
What type of error are you seeing?
Timed out
If the error message mentions 'timed out' like the example below:
...
Solution: Add the "timeout=600" (or longer) option for the timeout duration in seconds, to your CDS API request :
c = cdsapi.Client(timeout = 600 ,quiet = False ,debug = True ) |
If the issue continues you will need to check that the ports required by the CDS are open on your firewall (i.e. https, 443)
...