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で返されるデータを外側から抽出するにはどうすればよいですか?
なぜ"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?
