This commit is contained in:
Charlie 2024-03-17 18:22:56 +11:00
parent 0ad7b3f110
commit 7145e0323e

13
ws.py Normal file
View file

@ -0,0 +1,13 @@
import asyncio
import websockets
async def test_link():
async with websockets.connect('ws://localhost:5000/') as websocket:
for i in range(50):
print(f"Sending message {i}")
await websocket.send("SCRAM")
asyncio.get_event_loop().run_until_complete(test_link())
asyncio.get_event_loop().run_forever()