0
Follow
0
Followers
파이썬에서 웹소켓 모듈의 긴 연결을 사용하는 방법에 대해 알려주시겠습니까?
Created 2021-05-02 23:28:35 Updated 2021-05-02 23:31:12
2
1536
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) ' 뒤에 있는 코드가 실행되지 않는가?
파이썬에 대해 잘 모르는 사람들이 많아요.
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?
