ws-bridge / app.py
Ramesh-vani's picture
Update app.py
4a70d33
raw
history blame
858 Bytes
import threading
import asyncio
import websockets
async def websocket_consumer(websocket, path):
try:
code = await websocket.recv()
async with websockets.connect('wss://ramesh-vani-wspython.hf.space') as wssocket:
await wssocket.send(code)
while True:
response = await wssocket.recv()
await websocket.send(response)
except websockets.exceptions.ConnectionClosedOK:
pass
class WebSocketThread(threading.Thread):
def run(self):
asyncio.set_event_loop(asyncio.new_event_loop())
start_server = websockets.serve(websocket_consumer, '0.0.0.0', 7860)
asyncio.get_event_loop().run_until_complete(start_server)
asyncio.get_event_loop().run_forever()
websocket_thread = WebSocketThread()
websocket_thread.start()