gpt4 book ai didi

Python 客户端保持 websocket 打开并对收到的消息使用react

转载 作者:行者123 更新时间:2023-12-01 12:38:29 27 4
gpt4 key购买 nike

我正在尝试在 python 中实现一个 REST 客户端,该客户端对通过与相关服务器打开的 websocket 从服务器收到的消息使用react。这是场景:

  • 客户端打开一个与服务器的websocket
  • 服务器不时向客户端发送消息
  • 当客户端收到消息时,它会从服务器

我当前的客户端能够打开 websocket 并从服务器接收消息。但是,一旦它收到消息,它就会从服务器获取信息然后终止,而我想让它继续监听其他消息,这将使它从服务器获取新内容。

这是我的代码片段:

def openWs(serverIp, serverPort):
##ws url setting
wsUrl = "ws://"+serverIp+":"+serverPort+"/websocket"

##open ws
ws = create_connection(wsUrl)

##send user id
print "Sending User ID..."
ws.send("user_1")
print "Sent"

##receiving data on ws
print "Receiving..."
result = ws.recv()

##getting new content
getUrl = "http://"+serverIp+":"+serverPort+"/"+result+"/entries"
getRest(getUrl)

我不知道使用线程是否合适,我不是这方面的专家。如果有人能提供帮助,那就太好了。

提前致谢。

最佳答案

我完成了这段代码,达到了我的预期。从 here 获取它

import websocket
import thread
import time

def on_message(ws, message):
print message

def on_error(ws, error):
print error

def on_close(ws):
print "### closed ###"

def on_open(ws):
def run(*args):
for i in range(3):
time.sleep(1)
ws.send("Hello %d" % i)
time.sleep(1)
ws.close()
print "thread terminating..."
thread.start_new_thread(run, ())


if __name__ == "__main__":
websocket.enableTrace(True)
ws = websocket.WebSocketApp("ws://localhost:5000/chat",
on_message = on_message,
on_error = on_error,
on_close = on_close)
ws.on_open = on_open

ws.run_forever()

关于Python 客户端保持 websocket 打开并对收到的消息使用react,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27272394/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com