0
Follow
0
Followers
请教关于python中websocket模块长连接使用上的一下问题?
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)
用什么方法可以在外边提取到on_message中返回的数据?(不是print出来)
为什么'wsapp.run_forever(ping_interval=60, ping_timeout=10)'后面的代码不会被执行?
才接触python有很多不懂的 希望大神能够点拨一下 非常感谢
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?
