I am writing a script to automatically download and update the installed version of the Google App Engine SDK. I can determine the installed version.
I need to make a wget request and check if it returns a 404 error; in fact, these are at least 2 requests, one to check for bug fixes, and the second to check for minor version updates.
I would like to avoid these wget requests. To do this, I need to determine the latest (stable, non-preliminary) version of the SDK. Is this information available through an API or other source that can be programmed?
source share