0
Follow
0
Followers
¿Puedes contarme sobre el uso de la conexión larga del módulo websocket en Python?
Created 2021-05-02 23:28:35 Updated 2021-05-02 23:31:12
2
1537
import websocket
def on_message(wsapp, message):
print(message)
def on_ping(wsapp, message):
print("Got a ping!")
def on_pong(wsapp, message):
print("Got a pong! No need to respond")
wsapp = websocket.WebSocketApp("wss://stream.meetup.com/2/rsvps",
on_message=on_message, on_ping=on_ping, on_pong=on_pong)
wsapp.run_forever(ping_interval=60, ping_timeout=10)
¿Cómo extraer los datos que se devuelven en el on_message?
¿Por qué el código detrás de 'wsapp.run_forever(ping_interval=60, ping_timeout=10) ' no se ejecuta?
Hay muchas personas que no entienden Python y esperamos que Dios les ayude.
Related Recommendations
How to Specify Different Versions of Data for the Rented Strategy by Its Rental Code MetadataAdvanced Tutorial for FMZ Quant platform Strategy WritingElementary Tutorial for FMZ Quant platform Strategy WritingGet Started with FMZ Quant PlatformSECURITY BUGI keep getting error: Exchange_GetAccount: Invalid ContractTypeWe have an incredibly profitable market making algorithm for sideways markets on Bitmex - but need expert to help eliminate wait times during downward volatility in the marketError with deribitLimitations of the backtesting engineHow to install ta-lib on linux docker?
