-
Given the following protobuf:
```
message ABCAnswerDeleted {
uint64 test_id = 1;
}
```
Version: `betterproto[compiler]` -> `2.0.0b2` or `2.0.0b3` gives
```
@dataclass(eq=False, repr=False)…
-
I'm using msgspec to shuttle data around where I'm often both the server and the client, meaning the schema is predefined and protobuf's extra compression would be nice. Taking a look at the protobuf …
-
File "/Users/.../.venv/lib/python3.12/site-packages/bxsolana/provider/ws.py", line 7, in
from . import jsonrpc_patch # noqa: F401, Used for side-effect patching
^^^^^^^^^^^^^^^^^^^^^^^^^…
-
### Summary
When compiling a proto file which references well known types, `protoc` should generate the line `import betterproto.lib.google.protobuf as betterproto_lib_google_protobuf`. This does n…
-
### Summary
mypy check failed
### Reproduction Steps
Run
```
poe types
```
### Expected Results
It should pass.
### Actual Results
Got
```
-> % poe types
Poe => mypy src --ignore-missing-…
-
The `google.protobuf.Timestamp` well-known type is very much appreciated, but I've found myself often needing to be able to convert a Python `datetime` into a `Timestamp` within an expression (especia…
-
I tried to install tuf-on-ci-sign with uv into a uv created venv and ran into an error:
> ~ % uv pip install tuf-on-ci-sign
> × No solution found when resolving dependencies:
> ╰─▶ Because th…
-
When running buf generate along with betterproto on a project that requires proto3_optional we get a warning:
```
Warning: plugin "pyproject" does not support required features.
Feature "proto3…
-
Hi folks,
Before I knew this package existed, I implemented a similar AST-like structure over at [python-betterproto](https://github.com/danielgtaylor/python-betterproto). I actually think it's rem…
-
As of right now, protoc compiles proto files into what is essentially a garbled mess of runtime generated nonsense. This may be applicable to C or other languages, but with pythons use of type hintin…