当前位置:   article > 正文

python+websocket服务器给客户端发消息_基于python的websockets的推送消息

基于python的websockets的推送消息

服务器和客户端建立联系之后,达到要求就给客户端发送消息,不需要客户端每次都请求。

 

服务器端

  1. import asyncio
  2. import websockets
  3. import random
  4. dic_send = 2
  5. """实现一直给客户端发消息,异步等待3秒,达到特定要求给客户端发送"""
  6. async def echo(websocket, path):
  7. cnt = 0
  8. while True:
  9. x = random.randint(1,3)
  10. if x == dic_send:
  11. cnt +=1
  12. await websocket.send(str(cnt)+": "+str(dic_send)) # 第几个2传过来
  13. print(x)
  14. await asyncio.sleep(3)
  15. start_server = websockets.serve(echo,'192.168.4.27',5678) # 地址改为你自己的地址
  16. asyncio.get_event_loop().run_until_complete(start_server)
  17. asyncio.get_event_loop().run_forever()

客户端

  1. import asyncio
  2. import websockets
  3. async def hello(uri):
  4. async with websockets.connect(uri) as websocket:
  5. while True:
  6. recv_text = await websocket.recv()
  7. print("> {}".format(recv_text))
  8. asyncio.get_event_loop().run_until_complete(
  9. hello('ws://192.168.4.27:5678')) # 地址改为你自己的地址

 

先运行服务器端,再运行客户端,当服务器端的数字为2时发送给客户端,每隔3秒判定一次,不是2就不发。

    

 

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/85365
推荐阅读
相关标签
  

闽ICP备14008679号