twirpy
twirpy copied to clipboard
Twirp's python implementation
One can use middlewares from https://www.starlette.io/middleware/ Our middlewares act more like a decorator on the actual method than a real middleware. I believe we had added them internally when we...
- [ ] verloopcontext - [ ] vtwirp - [ ] protoc-gen-python-verloop
Fix for Issue #46. Instead of defaulting content-type to None in _get_encoder_decoder, instead default it to an empty string. If the content-type header is missing, then the error message will...
If Content-Type is missing from the request, Twirpy returns a 500 response code instead of gracefully handling the error. Make any request without a Content-Type. This error will be raised....
Bumps [protobuf](https://github.com/protocolbuffers/protobuf) from 3.17.1 to 3.18.3. Release notes Sourced from protobuf's releases. Protocol Buffers v3.18.3 C++ Reduce memory consumption of MessageSet parsing This release addresses a Security Advisory for C++...
Hello, Would it be possible to run this twirp implementation on a flask server? Any advice on how to do so if possible?
Hi! I've been using this package for a bit, and for performance reasons I've had to create a modified TwirpClient that makes http requests using aiohttp instead of requests, so...