python-betterproto
python-betterproto copied to clipboard
Clean, modern, Python 3.6+ code generator & library for Protobuf 3 and async gRPC
Bumps [protobuf](https://github.com/protocolbuffers/protobuf) from 3.19.4 to 3.19.5. Release notes Sourced from protobuf's releases. Protocol Buffers v3.19.5 C++ Reduce memory consumption of MessageSet parsing This release addresses a Security Advisory for C++...
message LoginInfo { optional string login_channel = 1; optional string open_id = 2; // optional DeviceInfo deviceInfo = 3; optional AccountInfo accountInfo = 4; optional int64 robotIntoId = 5; }...
Methods that use `_stream_unary` work correctly when I use any iterable that is not empty. However, I noticed that when I try to pass any empty iterable (an empty list...
- `_stream_unary` now sends request first, so even if iterable is empty, the request is sent - Added tests to check if `stream_unary` and `stream_stream` methods work with empty iterables...
I am trying to transform a fairly complex directory structure of `.proto` messages using `betterproto`. I'm running into an issue where subdirectories that share a name collide with each other...
Hi, I have found an issue when I wanted to use this library in combination with multiprocessing/pickling. I am using version 2.0.0b5 When the resulting message is send back by...
I think I mentioned I'd like to add this a while ago Security issues show up at https://github.com/danielgtaylor/python-betterproto/security/code-scanning?query=is%3Aopen+pr%3A417
Hello, Is the GRPC server stub only capable of handling 1 request at a time in a sync order? I have a heavy-loaded method that takes a while to complete,...
This would ideally be fixed upstream in python but that isn't seeming likely Fixes #407
Is it possible to generate a _.proto_ file on the 'fly'. Given some data (structure unknown), a python dict say, is it possible to generate the corresponding proto file? Thanks...