* Force uninstall protobuf in python macos builds We are seeing failures in brew uninstall protobuf due to no package. Change this to a force install to avoid the error. * Fix spelling errors (#10717) * Merge pull request #10200 from tonydnewell/bugfix/protobuf-7474 Fix for grpc.tools #17995 & protobuf #7474 (handle UTF-8 paths in argumentfile) * Upgrade to kotlin 1.6 * 21.x No longer define no_threadlocal on OpenBSD * Upgrade kokoro to Xcode 14 (#10732) * Upgrade kokoro to Xcode 14 * Fix osx errors * Merge pull request #10770 from protocolbuffers/googleberg-cl-480629524 Mark default instance as immutable first to avoid race during static initialization of default instances. * Auto capitalize enums name in Ruby (#10454) (#10763) This closes #1965. * Edit toolchain to work with absl dep * Bump upb to latest version after fixes applied (#10783) * 21.x 202210180838 (#10785) * Updating version.json and repo version numbers to: 21.8 * Update changelog Co-authored-by: Protobuf Team Bot <protobuf-team-bot@google.com> * Update generated protos Co-authored-by: deannagarcia <69992229+deannagarcia@users.noreply.github.com> Co-authored-by: Matt Fowles Kulukundis <matt.fowles@gmail.com> Co-authored-by: Deanna Garcia <deannagarcia@google.com> Co-authored-by: Brad Smith <brad@comstyle.com> Co-authored-by: Jerry Berg <107155935+googleberg@users.noreply.github.com> Co-authored-by: tison <wander4096@gmail.com> Co-authored-by: Protobuf Team Bot <protobuf-team-bot@google.com> |
||
|---|---|---|
| .. | ||
| docs | ||
| protobuf_distutils | ||
| .repo-metadata.json | ||
| BUILD.bazel | ||
| internal.bzl | ||
| MANIFEST.in | ||
| python_version.py | ||
| README.md | ||
| release.sh | ||
| requirements.txt | ||
| setup.cfg | ||
| setup.py | ||
| tox.ini | ||
Protocol Buffers - Google's data interchange format
Copyright 2008 Google Inc.
This directory contains the Python Protocol Buffers runtime library.
Normally, this directory comes as part of the protobuf package, available from:
https://developers.google.com/protocol-buffers/
The complete package includes the C++ source code, which includes the Protocol Compiler (protoc). If you downloaded this package from PyPI or some other Python-specific source, you may have received only the Python part of the code. In this case, you will need to obtain the Protocol Compiler from some other source before you can use this package.
Development Warning
The pure python performance is slow. For better performance please use python c++ implementation.
Installation
-
Make sure you have Python 3.7 or newer. If in doubt, run:
$ python -V -
Make sure you have Bazel 0.5.4 or later (or CMake 3.5 or later).
-
If you do not have setuptools installed, note that it will be downloaded and installed automatically as soon as you run
setup.py. If you would rather install it manually, you may do so by following the instructions on this page. -
Build the C++ code, or install a binary distribution of
protoc. If you install a binary distribution, make sure that it is the same version as this package. If in doubt, run:$ protoc --version -
Build and run the tests:
$ python setup.py build $ python setup.py testTo build, test, and use the C++ implementation, you must first compile
libprotobuf.sousing either Bazel or CMake:On OS X:
If you are running a Homebrew-provided Python, you must make sure another version of protobuf is not already installed, as Homebrew's Python will search
/usr/local/libforlibprotobuf.sobefore it searches the compiled binaries.You can either unlink Homebrew's protobuf or install the
libprotobufyou built earlier:$ brew unlink protobufor
$ (cd .. && cmake . && make install)On other *nix:
You must make
libprotobuf.sodynamically available. You can either install libprotobuf you built earlier, or setLD_LIBRARY_PATH:$ (cd .. && cmake . && make -j20 install)or
$ export LD_LIBRARY_PATH=../bazel-binTo build the C++ implementation run:
$ python setup.py build --cpp_implementationThen run the tests like so:
$ python setup.py test --cpp_implementationIf some tests fail, this library may not work correctly on your system. Continue at your own risk.
Please note that there is a known problem with some versions of Python on Cygwin which causes the tests to fail after printing the error:
sem_init: Resource temporarily unavailable. This appears to be a bug either in Cygwin or in Python.We do not know if or when it might be fixed. We also do not know how likely it is that this bug will affect users in practice.
-
Install:
$ python setup.py installor:
$ (cd .. && make install) $ python setup.py install --cpp_implementationThis step may require superuser privileges. NOTE: To use C++ implementation, you need to export an environment variable before running your program. See the "C++ Implementation" section below for more details.
Usage
The complete documentation for Protocol Buffers is available via the web at:
https://developers.google.com/protocol-buffers/
C++ Implementation
The C++ implementation for Python messages is built as a Python extension to improve the overall protobuf Python performance.
To use the C++ implementation, you need to install the C++ protobuf runtime library, please see instructions in the parent directory.