Replies: 1 comment
-
Hello, thank you for your support Answering your question: you need nothing, i even tested all kind of grpc request with python client, and golang client, i can get you the example i have done if find yourself blocked, but it should be very straightforward FOR GOLANG1- go get google.golang.org/grpc 2- make folder generated 3- make users.proto with message and service and add 4- protoc --go_out=plugins=grpc:gRPC/generated .\gRPC\protos\database.proto FOR PYTHON1- pip install grpcio-tools 2- python -m grpc_tools.protoc -I./protos --python_out=./generated/ --grpc_python_out=./generated/ ./protos/database.proto |
Beta Was this translation helpful? Give feedback.
-
Hi! I love what this project brings to the table, I use to develop a lot in Django and miss it greatly since I started doing golang, I'm curious if I were to try to run this inside a grpc service, mainly to leverage the ORM features, what would be needed?
Beta Was this translation helpful? Give feedback.
All reactions