如何使用python来实现客服端跟websocket服务进行通信

本文介绍了如何在Python中利用websockets模块与WebSocket服务进行交互,包括基本的连接、发送消息以及实现一个死循环以持续接收服务器响应的示例。
摘要由CSDN通过智能技术生成

有时有的接口提供的是websocket服务,在python中如何跟websocket进行交互呢?
首先我们需要用到 websockets 模块
安装代码:pip3 install websockets

下面提供一个简单的python与websocket交互代码:

import asyncio
import websockets

async def connect_to_server():
    uri = "ws://localhost:8765"
    async with websockets.connect(uri) as websocket:
        # 发送消息
        message = "Hello, WebSocket!"
        await websocket.send(message)
        print(f"Sent message: {message}")

        # 接收服务器的响应
        response = await websocket.recv()
        print(f"Received response: {response}")

# 运行事件循环连接到WebSocket服务器
asyncio.get_event_loop().run_until_complete(connect_to_server())

上面代码接收到一次消息就会终止运行,如何想一直运行,要用到死循环执行获取是否有消息发过来。

import asyncio
import websockets

async def connect_to_server():
    uri = "ws://localhost:8765"
    async with websockets.connect(uri) as websocket:
        # 发送消息
        message = "Hello, WebSocket!"
        await websocket.send(message)
        print(f"Sent message: {message}")

        await recv_data(websocket)
        
async def recv_data(websocket):
    while True:
        response = await websocket.recv()
        print(f"Received response: {response}")

# 运行事件循环连接到WebSocket服务器
asyncio.get_event_loop().run_until_complete(connect_to_server())
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值