diff --git a/ws_talk.py b/ws_talk.py deleted file mode 100644 index ab03d7e..0000000 --- a/ws_talk.py +++ /dev/null @@ -1,12 +0,0 @@ -import json -from websocket import create_connection - -ws = create_connection("ws://localhost:1212/talk") -while True: - ws.send(payload=b"{'text': 123, 'username': 'bob'}")#json.dumps({"op":"addr_sub", "addr":"dogecoin_address"})) - result = ws.recv() - print(result) - ws.send(payload=input("whats your message:")) - #print(eval(result)) - #print(result) -ws.close() \ No newline at end of file