mirror of
https://github.com/go-micro/go-micro.git
synced 2025-04-04 20:44:27 +02:00
11 lines
178 B
Python
11 lines
178 B
Python
|
import requests
|
||
|
import json
|
||
|
import proxy
|
||
|
|
||
|
def main():
|
||
|
response = proxy.http_call("/greeter", {"name": "John"})
|
||
|
print response.text
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
main()
|