mirror of
https://github.com/go-micro/go-micro.git
synced 2025-06-12 22:07:47 +02:00
Add examples
This commit is contained in:
17
examples/greeter/srv/python/rpc_server.py
Normal file
17
examples/greeter/srv/python/rpc_server.py
Normal file
@ -0,0 +1,17 @@
|
||||
from werkzeug.wrappers import Request, Response
|
||||
from werkzeug.serving import run_simple
|
||||
|
||||
from jsonrpc import JSONRPCResponseManager, dispatcher
|
||||
|
||||
@Request.application
|
||||
def application(request):
|
||||
# Dispatcher is dictionary {<method_name>: callable}
|
||||
dispatcher["Say.Hello"] = lambda s: "hello " + s["name"]
|
||||
|
||||
response = JSONRPCResponseManager.handle(
|
||||
request.data, dispatcher)
|
||||
return Response(response.json, mimetype='application/json')
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
run_simple('localhost', 4000, application)
|
Reference in New Issue
Block a user