The Python discovery client library google-api-python-client currently downloads the discovery doc for a service at runtime and constructs a client. Convert the library to a static/packaged library. See the Node client for an example of this.
The Python client has a discovery_cache that is only usable with the deprecated auth client (oauth2client) or App Engine Standard's memcache. One possible solution is adjusting this cache to reference downloaded json instead.
The Python discovery client library
google-api-python-clientcurrently downloads the discovery doc for a service at runtime and constructs a client. Convert the library to a static/packaged library. See the Node client for an example of this.The Python client has a discovery_cache that is only usable with the deprecated auth client (oauth2client) or App Engine Standard's memcache. One possible solution is adjusting this cache to reference downloaded json instead.