grpclib
grpclib copied to clipboard
Pure-Python gRPC implementation for asyncio
I'm not entirely sure what this issue is. Basically, I have a server. ``` async def start_server(): await server.start(...) await server.wait_closed() print("Closed the server") ``` elsewhere, I have a function...
This will help identify when connection becomes broken. See also: https://github.com/grpc/grpc/blob/master/doc/PROTOCOL-HTTP2.md#ping-frame
I think it is great to create benchmark comparation with grpcio. E.x. throughputs/latency/...
Hi, Was looking to help out. Do you have any milestones in mind? Features to add? Major bugs to fix?
How do I create a channel where the host is an URL? eg: `Channel(host="localhost/backendDev", port=5000)` The server is made in c# and runs in an windows service and the LaunchSettings...
Due to changes in what I think is the `asyncio` library the example servers no longer stay running in Python 3.12. The server will successfully start but will immediately exit....
This addresses a crash I’ve been encountering with ssl on python 3.11 when the connection aborts unexpectedly.
FIxes #170
Add HTTP details to the GRPCError exception for handling various errors and flows related to HTTP. For example, the 30X responses (moved) cannot be handled without access to the HTTP...