##websocketライブラリについて
pythonのwebsocketライブラリ(https://githubja.com/websocket-client/websocket-clientにgithubURLや日本語訳が載っています)について質問があります。
python:sample.py
1import websocket 2import json 3import pprint 4import time 5 6 7 8 9class RealtimeAPI(object): 10 11 def __init__(self,url,channel): 12 self.url = url 13 self.channel = channel 14 self.ws = websocket.WebSocketApp(self.url,header=None,on_message=self.on_message,\ 15 on_open=self.on_open,on_close=self.on_close,on_error=self.on_error) 16 # websocket.enableTrace(True) 17 18 def run(self): 19 self.ws.run_forever() 20 21 def on_message(self,ws,message): 22 message = json.loads(message) 23 print(message) 24 25 def on_error(self,ws,error): 26 print(error) 27 28 def on_open(self,ws): 29 print("websocket connection started.") 30 ws.send(json.dumps({"method": "subscribe","params": {"channel": self.channel}})) 31 32 def on_close(self,ws): 33 print("###websocket connection closed.###") 34 35if __name__ == "__main__": 36 url = "wss://ws.lightstream.bitflyer.com/json-rpc" 37 channel = "lightning_executions_FX_BTC_JPY" 38 json_rpc = RealtimeAPI(url=url,channel=channel) 39 json_rpc.run()
上のようなコードを作りmessageを表示しようとしたのですが、エラーで止まることはないのですがmessageがprintされません。どこかおかしいところはありますか?なお、中盤のwebsocket.enableTrace(True)
を有効にするとrequestとresponseのheaderに加えて
error from callback <bound method RealtimeAPI.on_open of <__main__.RealtimeAPI object at 0x1039bcdd8>>: on_open() missing 1 required positional argument: ' ws' File "/anaconda3/lib/python3.6/site-packages/websocket/_app.py", line 343, in _callback callback(*args)
と表示されます。
websocket自体他の言語でも扱っていないので、根本的な理解が浅いかもしれませんがよろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。