File size: 830 Bytes
065fee7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
Proto Plus for Python
=====================
Beautiful, Pythonic protocol buffers.
This library provides a clean, readable, straightforward pattern for
declaring messages in `protocol buffers`_. It provides a wrapper around
the official implementation, so that using messages feels natural while
retaining the power and flexibility of protocol buffers.
.. _protocol buffers: https://developers.google.com/protocol-buffers/
Installing
----------
Install this library using ``pip``:
.. code-block:: shell
$ pip install proto-plus
This library carries a dependency on the official implementation
(protobuf_), which may install a C component.
.. _protobuf: https://pypi.org/project/protobuf/
Table of Contents
-----------------
.. toctree::
:maxdepth: 2
messages
fields
marshal
status
reference/index
|