0

I want to use google cloud pub/sub with grpc call in python. How can I implement? can someone provide good resources for this?

Vimox Shah
  • 99
  • 1
  • 9

1 Answers1

0

The grpc protocol is specified here, however I would advise against using the protocol directly. Instead, try using the client libraries for your specific language as described here.

The client libraries use the grpc protocol under the hood and add on batching behavior and correctly handle authentication.

Daniel Collins
  • 752
  • 3
  • 14