Lines Matching +full:update +full:- +full:discovery +full:- +full:artifacts +full:-
3 The 2.0 release of `google-api-python-client` includes a substantial reliability
4 improvement, compared with 1.x, as discovery documents are now cached in the library
9 [v1](https://github.com/googleapis/google-api-python-client/tree/v1).
11 Discovery documents will no longer be retrieved dynamically when
12 you call `discovery.build()`. The discovery documents will instead be retrieved
14 As a result of caching the discovery documents, the size of this package is at least
19 ------------------------
24 -------------------------
25 If the discovery document requires an authentication key to access it then the
26 discovery document is private and it will not be shipped with the library.
27 Only discovery documents listed in [this public directory](https://www.googleapis.com/discovery/v1/…
29 `static_discovery` argument of `discovery.build()` to `False` to continue to
33 the `discoveryServiceUrl` argument of `discovery.build()` is provided.
35 …e questions, please file an [issue](https://github.com/googleapis/google-api-python-client/issues).
47 require updating. You should only update your code if you are using an API
48 which does not have a public discovery document.
52 The 2.0 release no longer retrieves discovery documents dynamically on each
53 call to `discovery.build()`. Instead, discovery documents are retrieved from
56 Under the hood, the `discovery.build()` function retrieves a discovery artifact
58 `discovery.build()` function will no longer retrieve discovery artifacts
64 from googleapiclient.discovery import build
66 # Retrieve discovery artifacts from the internet
73 from googleapiclient.discovery import build
75 # Retrieve discovery artifacts from the client library
79 # Retrieve discovery artifacts from the internet for a private API