-
### Summary
Non-functional code gets generated when a message field is named `request`
### Reproduction Steps
Have a message field named `request` in your protofile, and use `betterproto` to …
-
From time to time, in our applications that do client calls to gRPC APIs we see this kind of error:
```
Traceback (most recent call last):
File "/usr/local/lib/python3.8/asyncio/sslproto.py",…
-
- [x] I am on the [latest](https://github.com/python-poetry/poetry/releases/latest) Poetry version.
- [x] I have searched the [issues](https://github.com/python-poetry/poetry/issues) of this re…
-
Custom options are a vanilla proto feature documented [here](https://developers.google.com/protocol-buffers/docs/proto#customoptions). I personally have a use case for them to apply constraints, simil…
-
### Summary
The steam client keeps spamming that it is trying to reconnect but nothing happens.
### Reproduction Steps
```py
try:
await bot.start(disco…
-
Given a file like...
```
import "badger/mushroom";
package badger.snake;
message Snake {
badger.mushroom.Mushroom mushroom = ...;
}
```
This results in compiling a `badger/snake.py` …
danni updated
4 years ago
-
Certainly I had the same issue with the original protoc compiler, but generated relative imports are complaining. I have a bunch of protos in the same directory.
I'm using the cmd line to generate …
-
I have a theoretical proto file message defined as:
```
message Measurement {
double pressure = 1;
double temperature = 2;
}
message MeasurementMap {
map measurements = 1;
}
service…
-
Whenever I send a request to **/v2/auth/sms/send?auth_type=sms**.
I get following as response:
`{
"meta": {
"status": 200
},
"data": {
"otp_length": 6,
"sms_sent": false
}…
-
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 alot!