You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromfastapiimportFastAPI, WebSocketapp=FastAPI()
@app.websocket("/data")asyncdefdata_websocket(websocket: WebSocket):
awaitwebsocket.accept()
whileTrue:
data=awaitgenerate_data() # Your function to get real-time dataawaitwebsocket.send_json(data)
awaitasyncio.sleep(1) # Adjust based on desired update frequency
The text was updated successfully, but these errors were encountered:
Replace polling with web sockets e.g.
The text was updated successfully, but these errors were encountered: