-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Get update on request #122
Comments
I got the same issue |
I have a similar problem. I am getting this error while downloading data from ERA5 via API (with the latest version of cdsapi)
I found out that the correct URL is
Among them,
is ERA5 key $HOME /. Cdsapir file url
to
But the api in this package has not changed |
In your case, if the problem is only on downloading data, I think you can change this function of def retrieve(self, name, request, target=None):
result = self._api("%s/resources/%s" % (self.url, name), request, "POST")
if target is not None:
result.download(target)
return result to def retrieve(self, name, request, target=None):
result = self._api("%s/dataset/%s" % (self.url, name), request, "POST")
if target is not None:
result.download(target)
return result In my case, I am trying to first get an update on the task before downloading. |
I'm getting the same issue, the The release notes of
so I'm unsure if we'll get feedback here |
What maintenance does this project need?
I used to be able to programatically check the update of a request using this:
After updating to the new cdsapi,
result.update()
returns:Am I doing something wrong or is the cdsapi still requires updating?
Organisation
UNIGE
The text was updated successfully, but these errors were encountered: