Skip to main content

Questions tagged [grpc]

A general RPC (Remote Procedure Call) framework over HTTP/2, initially developed at Google. gRPC is a language neutral and platform neutral framework that allows users to write applications where independent services can work with each other as if they were native. It uses Protocol Buffers as the interface description language.

2 votes
0 answers
28 views

gRPC service for managing groups

Trying out gRPC for the first time in a few years and looking for some feedback on the simplest of the APIs, since no one is currently using it extensively at my company and will end up pioneering its ...
foobar's user avatar
  • 21
1 vote
1 answer
988 views

ASP.NET Core Authorization handler that allows request from private IP ranges

In a docker compose solution, there are multiple ASP.NET Core projects. Each of them provide a service. Some of them can be accessed from internet (with REST APIs), some of them are for local docker ...
Parsa99's user avatar
  • 267
1 vote
0 answers
1k views

Execute command using `asyncio.create_subprocess_shell` and yield lines of stdout, stderr and finally the return code

My task is to run a subprocess using asyncio.create_subprocess_shell and yield the lines of output. I am using asyncio to avoid ...
user7610's user avatar
  • 559
6 votes
2 answers
290 views

Python gRPC shopping cart service

The .proto file is as below: ...
Alireza's user avatar
  • 91