Updated ws_talk.py

This commit is contained in:
mirai 2022-12-02 08:30:01 +03:00
parent 4bb31d217e
commit 85dbef72dc

View File

@ -1,9 +1,9 @@
import json import json
from websocket import create_connection from websocket import create_connection
ws = create_connection("ws://localhost:1212/update") ws = create_connection("ws://localhost:1212/talk")
while True: while True:
ws.send(payload="hello baby")#json.dumps({"op":"addr_sub", "addr":"dogecoin_address"})) ws.send(payload="{'text': 123, 'username': 'bob'}")#json.dumps({"op":"addr_sub", "addr":"dogecoin_address"}))
result = ws.recv() result = ws.recv()
print(eval(result)) print(eval(result))
print(result) print(result)