当前位置:   article > 正文

python websockets 全双工通信_python websockets while true

python websockets while true

python websockets全双工通信

功能描述

客户端和服务端都可发送或接收数据。发送和接收相互独立,异步并发。

运行环境

python3.6.8

websockets9.1

服务端

import asyncio
import websockets

async def send(websocket):
    while True:
        await asyncio.sleep(1)
        #此协程挂起1s,以切换到其他协程。不加此行不会切换到另一个协程。此处用time.sleep()不能起到这个作用。
	    #可以在此产生数据然后send出去。	
        await websocket.send("hello")
        #正常地发送,不会切换到receive()
        print("send hello")


async def receive(websocket):
    while True:
        await asyncio.sleep(1)
        #此协程挂起1s,以切换到其他协程。不加此行不会切换到另一个协程。此处用time.sleep()不能起到这个作用。
        greeting = await websocket.recv()
        #正常地接收,不会切换到send()
        print("receive "+greeting)


async def hello(websocket, path):
        a = asyncio.get_event_loop().create_task(send(websocket))
        b = asyncio.get_event_loop().create_task(receive(websocket))
        #使用create_task()创建task

        await a
        await b
        # ab并发
        # ab并发,下面这行代码不会执行
        print("wait")
        #print("wait")不会执行

start_server = websockets.serve(hello, "localhost", 8766)

asyncio.get_event_loop().run_until_complete(start_server)
asyncio.get_event_loop().run_forever()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38

客户端

import asyncio
import websockets

async def send(websocket):
    while True:
        await asyncio.sleep(1)
        #此协程挂起1s,以切换到其他协程。不加此行不会切换到另一个协程。此处用time.sleep()不能起到这个作用。

        await websocket.send("hello")
        #正常地发送,不会切换到receive()

        print("send hello")


async def receive(websocket):
    while True:
        await asyncio.sleep(1)
        #此协程挂起1s,以切换到其他协程。不加此行不会切换到另一个协程。此处用time.sleep()不能起到这个作用。

        greeting = await websocket.recv()
        #正常地接收,不会切换到send()
        print("receive"+greeting)


async def hello():
    uri = "ws://localhost:8766"
    async with websockets.connect(uri) as websocket:
        a = asyncio.get_event_loop().create_task(send(websocket))
        b = asyncio.get_event_loop().create_task(receive(websocket))
        await a
        await b
        # ab并发,下面这行代码不会执行
        print("wait")
        #print("wait")不会执行

asyncio.get_event_loop().run_until_complete(hello())
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/85472
推荐阅读
相关标签
  

闽ICP备14008679号