文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

我们一起聊聊Python协程和异步编程

2024-11-30 04:44

关注

Python中的异步编程主要依赖于`asyncio`模块。`asyncio`提供了一套用于编写异步代码的工具和框架,包括协程、事件循环和异步IO操作等。

代码示例:

1. 使用`async`和`await`定义协程函数:

import asyncio


async def my_coroutine():
    await asyncio.sleep(1)
    print("Coroutine executed")


asyncio.run(my_coroutine())

2. 使用`asyncio.create_task()`并发运行多个协程:

import asyncio


async def coroutine1():
    await asyncio.sleep(1)
    print("Coroutine 1 executed")


async def coroutine2():
    await asyncio.sleep(2)
    print("Coroutine 2 executed")


async def main():
    task1 = asyncio.create_task(coroutine1())
    task2 = asyncio.create_task(coroutine2())
    await asyncio.gather(task1, task2)


asyncio.run(main())

3. 使用`asyncio.wait()`等待多个协程完成:

import asyncio


async def coroutine1():
    await asyncio.sleep(1)
    print("Coroutine 1 executed")


async def coroutine2():
    await asyncio.sleep(2)
    print("Coroutine 2 executed")


async def main():
    tasks = [coroutine1(), coroutine2()]
    done, pending = await asyncio.wait(tasks)
    for task in done:
        print(f"Task {task} completed")


asyncio.run(main())

4. 使用`asyncio.Lock()`实现协程间的互斥访问:

import asyncio


async def counter(lock):
    async with lock:
        for _ in range(5):
            print("Counting")
            await asyncio.sleep(1)


async def main():
    lock = asyncio.Lock()
    tasks = [counter(lock) for _ in range(3)]
    await asyncio.gather(*tasks)


asyncio.run(main())

5. 使用`asyncio.Queue()`实现协程间的消息传递:

import asyncio


async def producer(queue):
    for i in range(5):
        await queue.put(i)
        print(f"Produced: {i}")
        await asyncio.sleep(1)


async def consumer(queue):
    while True:
        item = await queue.get()
        print(f"Consumed: {item}")
        await asyncio.sleep(2)


async def main():
    queue = asyncio.Queue()
    producer_task = asyncio.create_task(producer(queue))
    consumer_task = asyncio.create_task(consumer(queue))
    await asyncio.gather(producer_task, consumer_task)


asyncio.run(main())

6. 使用`asyncio.TimeoutError`设置协程的超时:

import asyncio


async def my_coroutine():
    await asyncio.sleep(2)
    print("Coroutine executed")


async def main():
    try:
        await asyncio.wait_for(my_coroutine(), timeout=1)
    except asyncio.TimeoutError:
        print("Coroutine timed out")


asyncio.run(main())

7. 使用`asyncio.run_in_executor()`在协程中执行阻塞的同步操作:

import asyncio


def sync_operation():
    # 阻塞的同步操作
    return "Sync result"


async def main():
    loop = asyncio.get_running_loop()
    result = await loop.run_in_executor(None, sync_operation)
    print(f"Result: {result}")


asyncio.run(main())

8. 使用`aiohttp`库进行异步HTTP请求:

import asyncio
import aiohttp


async def fetch_data(url):
    async with aiohttp.ClientSession() as session:
        async with session.get(url) as response:
            return await response.text()


async def main():
    url = "https://api.example.com/data"
    data = await fetch_data(url)
    print(f"Data: {data}")


asyncio.run(main())

9. 使用`asyncio.sleep()`模拟异步计时器:

import asyncio


async def timer(duration):
    await asyncio.sleep(duration)
    print(f"Timer finished after {duration} seconds")


async def main():
    tasks = [timer(1), timer(2), timer(3)]
    await asyncio.gather(*tasks)


asyncio.run(main())

10. 使用`asyncio`实现并发的文件IO操作:

import asyncio


async def read_file(file):
    async with asyncio.open_file(file, "r") as f:
        contents = await f.read()
        print(f"Read from {file}: {contents}")


async def write_file(file, data):
    async with asyncio.open_file(file, "w") as f:
        await f.write(data)
        print(f"Wrote to {file}")


async def main():
    file = "data.txt"
    await write_file(file, "Hello, world!")
    await read_file(file)


asyncio.run(main())

这些场景代码展示了协程和异步编程的使用方式。通过使用`asyncio`模块和相关的工具,我们可以轻松地编写并发和异步任务处理的代码,提高程序的性能和响应能力。

来源:测试开发学习交流内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯