| commit | 0d87ddc7d7185ac37d6298d3c3c0e7d6f90a0cab | [log] [tgz] |
|---|---|---|
| author | Joshua Haberman <jhaberman@gmail.com> | Fri Dec 03 17:47:04 2021 -0800 |
| committer | GitHub <noreply@github.com> | Fri Dec 03 17:47:04 2021 -0800 |
| tree | 58e07ed7211585cf7b39f8b650aa4246712aa889 | |
| parent | 34a3f12d63a7614466a398303d07172b92020483 [diff] | |
| parent | 5d92e132c715424bfba4b1e8918095fedfb0c6be [diff] |
Merge pull request #458 from haberman/python-descriptor Implemented descriptor wrappers in Python
μpb (often written ‘upb’) is a small protobuf implementation written in C.
upb is the core runtime for protobuf languages extensions in Ruby, PHP, and (soon) Python.
While upb offers a C API, the C API & ABI are not stable. For this reason, upb is not generally offered as a C library for direct consumption, and there are no releases.
upb has comparable speed to protobuf C++, but is an order of magnitude smaller in code size.
Like the main protobuf implementation in C++, it supports:
upb also supports some features that C++ does not:
However there are a few features it does not support:
protoc.For Ruby, use RubyGems:
$ gem install google-protobuf
For PHP, use PECL:
$ sudo pecl install protobuf
Please see CONTRIBUTING.md.