How do I format a websocket request?
问题 I'm trying to create an application in Python that powers a GPIO port when the balance of a Dogecoin address changes. I'm using the websocket API here and this websocket client. My code looks like this: from websocket import create_connection ws = create_connection("wss://ws.dogechain.info/inv") ws.send("op":"addr_sub", "addr":"dogecoin_address") result = ws.recv() print (result) ws.close() It's obviously not the final code, but I just wanted to see if I'm even able to connect to the