https://github.com/mdmedley/pybuf
Modularize Protobuf Code
https://github.com/mdmedley/pybuf
google google-protobuf google-protocol-buffers protobuf protocol-buffer-compiler protocol-buffers python
Last synced: about 1 month ago
JSON representation
Modularize Protobuf Code
- Host: GitHub
- URL: https://github.com/mdmedley/pybuf
- Owner: mdmedley
- License: mit
- Created: 2018-04-27T21:26:49.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-30T22:19:40.000Z (over 7 years ago)
- Last Synced: 2024-08-10T10:09:45.048Z (over 1 year ago)
- Topics: google, google-protobuf, google-protocol-buffers, protobuf, protocol-buffer-compiler, protocol-buffers, python
- Language: Python
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pybuf
Modularize Protocol Buffer Compiler generated code for use within your package.
### Version
v1.1.1
### Installation
```sh
pip install pybuf
```
### Quickstart
```python
from pybuf import modularize
modularize(source='/path/to/proto/files/directory/', destination='/path/to/module/', filename='specific_file.proto')
# filename param is optional
```
### Development
Want to contribute? Great! Fork and submit a pull request!