dep-protobuf/python
Jason Lunn 452984bf81 Updating version.json and repo version numbers to: 32.0-dev (#21351)
NOTE: This should be reviewed and imported via Copybara per the normal PR review process.

Closes #21351

PiperOrigin-RevId: 751446098
2025-04-25 09:22:00 -07:00
..
dist Rename bazel "pip_deps" hub_name. 2025-01-14 10:37:26 -08:00
docs Bump jinja2 from 3.1.5 to 3.1.6 in /python/docs (#20587) 2025-03-10 14:20:30 -07:00
google Updating version.json and repo version numbers to: 32.0-dev (#21351) 2025-04-25 09:22:00 -07:00
protobuf_distutils Drop Python 3.8 support 2024-11-20 08:41:33 -08:00
.repo-metadata.json Sync from Piper @457757259 2022-06-28 17:01:18 +00:00
BUILD.bazel Deprecate Descriptor Label. As an alternative, add helper methods for checking whether a field is required or repeated. 2025-03-24 19:12:18 -07:00
build_targets.bzl Upgrade abseil-cpp to 20250127 and use @com_google_absl -> @abseil-cpp and com_google_googletest -> @googletest canonical BCR names. 2025-02-10 09:43:53 -08:00
convert.c Performance optimization: check for python float before type-checking numpy. 2024-12-19 00:28:49 -08:00
convert.h upb: add 'options' arg to upb_Message_IsEqual() 2024-03-11 10:16:13 -07:00
descriptor.c Automated rollback of commit 5bd7d02ed8. 2025-03-24 22:10:02 -07:00
descriptor.h Update remainder of upb to new short license style. 2023-11-20 13:43:32 -08:00
descriptor_containers.c [python] Remove semicolon after PyObject_HEAD (#16123) 2024-11-27 10:08:21 -08:00
descriptor_containers.h Update remainder of upb to new short license style. 2023-11-20 13:43:32 -08:00
descriptor_pool.c Check with fallback descriptorDB for FindExtensionByNumber()/FindAllExtensions in UPB python pool. 2025-03-24 11:04:44 -07:00
descriptor_pool.h Update remainder of upb to new short license style. 2023-11-20 13:43:32 -08:00
extension_dict.c Fix segment fault for UPB Pyhon 'in' method of empty repeated extensions 2025-03-27 19:31:20 -07:00
extension_dict.h Update remainder of upb to new short license style. 2023-11-20 13:43:32 -08:00
internal.bzl Replace old branch of absl-py parameterization with a dev dependency 2024-12-16 18:57:05 -08:00
MANIFEST.in Add LICENSE to released python packages (#8913) 2021-08-27 15:41:58 -07:00
map.c [python] Remove semicolon after PyObject_HEAD (#16123) 2024-11-27 10:08:21 -08:00
map.h upb: add 'static' to several Python map functions 2023-12-19 17:52:06 -08:00
message.c fix: contains check segfaults on empty map (#20446) 2025-03-13 08:50:17 -07:00
message.h Update remainder of upb to new short license style. 2023-11-20 13:43:32 -08:00
minimal_test.py Reorganize upb file structure 2023-09-26 14:38:35 -07:00
protobuf.c [python] Remove explicit visibility("default") on PyInit__message (#16125) 2024-11-27 13:42:44 -08:00
protobuf.h Migrated upb to use Copybara-standard stripping. 2024-08-30 18:34:23 -07:00
py_extension.bzl Add linker flags enabling undefined dynamic_lookup for macOS for Python api_implementation.so and message.so 2024-12-03 10:01:18 -08:00
python_api.h Update remainder of upb to new short license style. 2023-11-20 13:43:32 -08:00
python_version_test.py Remove --noenable_bzlmod from .bazelrc 2025-01-31 16:45:18 -08:00
README.md Breaking Change: Removed obsolete/duplicate setup.py from Python. 2024-01-31 14:40:41 -08:00
repeated.c Add clear() method to repeated fields in Python. 2025-03-12 15:58:57 -07:00
repeated.h Update remainder of upb to new short license style. 2023-11-20 13:43:32 -08:00
requirements.txt Replace old branch of absl-py parameterization with a dev dependency 2024-12-16 18:57:05 -08:00
unknown_fields.c [python] Remove semicolon after PyObject_HEAD (#16123) 2024-11-27 10:08:21 -08:00
unknown_fields.h Update remainder of upb to new short license style. 2023-11-20 13:43:32 -08:00
version_script.lds Reorganize upb file structure 2023-09-26 14:38:35 -07:00

Protocol Buffers Python

This directory contains the Protobuf library for Python.

For user documentation about how to use Protobuf Python, see https://protobuf.dev/getting-started/pythontutorial/

Installation

In most cases you should install the library using pip or another package manager:

$ pip install protobuf

The packages released on https://pypi.org/project/protobuf/#files include both a source distribution and binary wheels.

Building packages from this repo

If for some reason you wish to build the packages directly from this repo, you can use the following Bazel commands:

$ bazel build //python/dist:source_wheel
$ bazel build //python/dist:binary_wheel

The binary wheel will build against whatever version of Python is installed on your system. The source package is always the same and does not depend on a local version of Python.

Building from setup.py

We support building from setup.py, but only from a Python source package. You cannot build from setup.py using the GitHub repo or the GitHub source tarball.

To build a source package from this repo, see the instructions in the previous section.

Implementation backends

There are three separate implementations of Python Protobuf. All of them offer the same API and are thus functionally the same, though they have very different performance characteristics.

The runtime library contains a switching layer that can choose between these backends at runtime. Normally it will choose between them automatically, using priority-ordered list, and skipping any backends that are not available. However you can request a specific backend by setting the PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION environment variable to one of the following values:

  1. upb: Built on the upb C library, this is a new extension module released in 4.21.0. It offers better performance than any of the previous backends, and it is now the default. It is distributed in our PyPI packages, and requires no special installation. The code for this module lives in this directory.
  2. cpp: This extension module wraps the C++ protobuf library. It is deprecated and is no longer released in our PyPI packages, however it is still used in some legacy cases where apps want to perform zero-copy message sharing between Python and C++. It must be installed separately before it can be used. The code for this module lives in google/protobuf/pyext.
  3. python: The pure-Python backend, this does not require any extension module to be present on the system. The code for the pure-Python backend lives in google/protobuf/internal

The order given above is the general priority order, with upb being preferred the most and the python backend preferred the least. However this ordering can be overridden by the presence of a google.protobuf.internal._api_implementation module. See the logic in api_implementation.py for details.

You can check which backend you are using with the following snippet:

$ python
Python 3.10.9 (main, Dec  7 2022, 13:47:07) [GCC 12.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from google.protobuf.internal import api_implementation
>>> print(api_implementation.Type())
upb

This is not an officially-supported or stable API, but it is useful for ad hoc diagnostics.

More information about sharing messages between Python and C++ is available here: https://protobuf.dev/reference/python/python-generated/#sharing-messages

Code generator

The code for the Protobuf Python code generator lives in //src/google/protobuf/compiler/python. The code generator can output two different files for each proto foo.proto:

  • foo_pb2.py: The module you import to actually use the protos.
  • foo_pb2.pyi: A stub file that describes the interface of the protos.

The foo_pb2.pyi file is useful for IDEs or for users who want to read the output file. The foo_pb2.py file is optimized for fast loading and is not readable at all.

Note that the pyi file is only generated if you pass the pyi_out option to protoc:

$ protoc --python_out=pyi_out:output_dir