Protobuf Libraries to encode message in Drift infrastructure
Project description
Drift Protocol for Python
A Python Protobuf library to encode message in Drift infrastructure. It provides pre-generated Protobuf messages so that you don't need to install protobuf compiler and generate them yourself.
Features
- Protocol Buffer >=3.12.4 <= 3.20
- No Protobuf Compiler and generation needed
Install
You can install the library as a PIP package with prebuilt Protobuf messages:
pip install -U drift-protocol
if you want to build the messages on your machine you can install it from the git repository:
pip install git+https://github.com/panda-official/DriftProtocol.git#subdirectory=python
Usage example
Parsing a Drift package:
from drift_protocol.common import DriftPackage, DataPayload, StatusCode
some_blob_received_from_drift = "...."
package: DriftPackage = DriftPackage()
package.ParseFromString(some_blob_received_from_drift)
if package.statuse != StatusCode.GOOD:
exit(-1)
for any_data in package.data:
if any_data.Is(DataPayload.DESCRIPTOR):
payload = DataPayload()
any_data.Unpack(payload)
data: bytes = payload.data
Related Projects
- WaveletBuffer - A universal C++ compression library based on wavelet transformation
- Drift Python Client - Python Client to access data of PANDA|Drift
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file drift_protocol-0.6.0-py3-none-any.whl
.
File metadata
- Download URL: drift_protocol-0.6.0-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 020f6d5d0e3b3b70cdd5e2a8e90c682066f4ed70b4fa8aba97d467f2701e695c |
|
MD5 | 2d2419e7d80792b0d11d1177120dd4f8 |
|
BLAKE2b-256 | 1b4e789abeff409e9e84c5934a6eb1a71f66da4d45e0a12f6a6727303a6145bd |