1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-04-04 20:44:27 +02:00
go-micro/examples/proxy/python/rpc_client.py

11 lines
182 B
Python
Raw Normal View History

2020-12-26 15:17:20 +00:00
import requests
import json
import proxy
def main():
response = proxy.rpc_call("/greeter/say/hello", {"name": "John"})
print response
if __name__ == "__main__":
main()