Skip to main content

Type stubs for google-api-python-client

Project description

Type stubs for google-api-python-client

PyPI version

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

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:

  1. 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.
  2. Only import the types inside an if typing.TYPE_CHECKING block. This ensures that the imports are only evaluated during type checking, not at runtime.

Any type not available at runtime is located under the googleapiclient._apis package, with a subpackage for the API and a subpackage for the API version. For example, the return type of build("sheets", "v4"), SheetsResource, should be imported from googleapiclient._apis.sheets.v4. Nested resources have a nested class structure, e.g. the return type of build("sheets", "v4").spreadsheets().values() is SheetsResource.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. For TypedDicts this will also give you useful info about the structure of the dictionary.

If you use Pyright/Pylance, you'll get a reportMissingModuleSource error at the import site, which indicates that the stub file doesn't have a corresponding source file. As long as the import only occurs during typechecking, this can be safely ignored. Autocomplete and typechecking will still work.

Note that since the types don't exist at runtime, they're not compatible with libraries that evaluate annotations at runtime. For example, you can't use them to annotate a field in a Pydantic model.

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"). Note the caveats to this approach in the previous section.

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.

Development

You can run create_stubs.py to generate new stubs. Note that you should first update the google-api-python-client dependency and also clone https://github.com/googleapis/google-api-python-client.

Feel free to use this to open a PR when new versions come out.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

google_api_python_client_stubs-1.35.0.tar.gz (2.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file google_api_python_client_stubs-1.35.0.tar.gz.

File metadata

  • Download URL: google_api_python_client_stubs-1.35.0.tar.gz
  • Upload date:
  • Size: 2.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for google_api_python_client_stubs-1.35.0.tar.gz
Algorithm Hash digest
SHA256 715f7df709ab7edb9d57a8cb3c2b0e9efd1fc1a735b16f6e4e6d7f1c41d94570
MD5 c6ab9bcc78296000b58b343667498733
BLAKE2b-256 f7b08512d7674cac7c44c2da4ca160906833314e07c66f4ace4266b2d860875d

See more details on using hashes here.

File details

Details for the file google_api_python_client_stubs-1.35.0-py3-none-any.whl.

File metadata

  • Download URL: google_api_python_client_stubs-1.35.0-py3-none-any.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for google_api_python_client_stubs-1.35.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cb3a4bf06424f0cb02383ae851dcb046f1e62c52c6c34fb5a94c0eff4502d471
MD5 600ecbf274e7d52ee923518c774b7ffd
BLAKE2b-256 18ce55bdce4d670bd55bc411d9279d903c537dc713cfcf4aeaa67051d3d5a88d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page