Merge pull request 'merge ws test for root' (#1) from charlie-sans/reso-execution:main into main

Reviewed-on: #1
This commit is contained in:
merith-tk 2024-03-30 06:07:44 -07:00
commit 233cd36a4e

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()