Skip to content

Instantly share code, notes, and snippets.

@nobonobo
nobonobo / server.py
Created February 16, 2016 05:33
python3でwebsocketsでjsonrpcのサンプル
import asyncio
import websockets
from websockets.exceptions import ConnectionClosed
from jsonrpc import JSONRPCResponseManager, dispatcher
@dispatcher.add_method
def hello(*params):
return 'hello'+repr(params)