Type stubs for google-api-python-client
Project description
Type stubs for google-api-python-client
This package provides type stubs for the google-api-python-client library. It allows you to type check usage of the library with e.g. mypy and will also improve autocomplete in many editors.
This is in no way affiliated with Google.
The stubs were generated automatically based on Google's Discovery Documents, that are bundled with google-api-python-client as of v2.
If you find incorrect annotations, please create an issue.
Releases can be somewhat infrequent. If you need a new release, create an issue and I'll probably get around to it faster.
Installation
$ pip install google-api-python-client-stubs
The stubs should be automatically picked up by your editor or typechecker.
Caveats
Performance
The stubs contain a separate overload of googleapiclient.discovery.build
for each service and version (see discovery.pyi
).
This can lead to slow type inference for this function. Mypy will generally be pretty fast after the first run,
but you might experience slow autocomplete in your editor. If you're experiencing this problem you can bypass type inference with explicit annotations,
e.g. sheets_service: SheetsResource = build("sheets", "v4")
instead of sheets_service = build("sheets", "v4")
.
See the next section for some caveats to this approach.
Explicit annotations
The google-api-python-client-stubs
is quite dynamic.
All resources are just instances of a single class with dynamically attached methods
and the requests and responses are just dictionaries. The way this is annotated is with
classes and TypedDicts
that don't exist in the actual library, only in the stub files. This means you cannot use any of these types at runtime, it will cause your code to crash.
If you rely solely on type inference, this is not an issue, but as soon as you want to explicitly
annotate a variable, argument or return type in your code with one of these types, you must follow these rules:
- Either put
from __future__ import annotations
at the top of your file or surround the annotations with quotes. This ensures that Python doesn't attempt to evaluate the types at runtime. Note that the import is only supported in Python 3.7 and above. - Only import the types inside an
if typing.TYPE_CHECKING
block. This ensures that the imports are only evaluated during type checking. Note that any type not available at runtime is located under thegoogleapiclient._apis
package. For example,SheetsResource
should be imported fromgoogleapiclient._apis.sheets.v4
. Note that nested resources have a nested class structure, e.g. the return type ofsheets_service.spreadsheets().values()
isSheetsResource.SpreadsheetsResource.ValuesResource
. If autocompleting import paths doesn't work you can find the correct path by using Mypy's reveal_type on the thing you want to explicitly annotate. ForTypedDict
s this will also give you useful info about the structure of the dictionary.
Recursive types
The stubs previously didn't include recursive type definitions due to a lack of type checker support, but this is now included. Note that if you're using Mypy, v0.990 or higher is required for this to work.
Stubs for non-API-specific parts
There are detailed stubs for the API services, but other parts of the library have only been annotated with stubgen,
so they're mostly typed as Any
. I believe these parts are mostly used internally by the library itself,
so for most users this should be fine. Contributions to improve these stubs are welcome, though.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for google_api_python_client_stubs-1.25.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f4d219012afb35e3dfbdcfffcb0b347179045f9f48a8d59ef9d45cc743f300d4 |
|
MD5 | 648ee6a026b7a82efc954137e17cefa1 |
|
BLAKE2b-256 | 06293ad0c5ef3c2cc4b9be0821b5ff00ab0cbfc211d4c17bf2e688955b18f547 |
Hashes for google_api_python_client_stubs-1.25.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2eff1e27b0b2980843f0ed242e430e29a2f7a2808d7b90e971f23e4ea73827a7 |
|
MD5 | 9cd34d618e5c69440b5104b949a3fb4e |
|
BLAKE2b-256 | 1da79565d73fe9610158f8dd57695108ab16d572f688292f71d6f205523a2b95 |