小编Jef*_*son的帖子

在 Python 中使用带有 asyncio 的信号量

我试图限制使用信号量同时运行的异步函数的数量,但我无法让它工作。我的代码归结为:

import asyncio


async def send(i):

    print(f"starting {i}")
    await asyncio.sleep(4)
    print(f"ending {i}")


async def helper():
    async with asyncio.Semaphore(value=5):
        await asyncio.gather(*[
            send(1),
            send(2),
            send(3),
            send(4),
            send(5),
            send(6),
            send(7),
            send(8),
            send(9),
            send(10),
        ])


if __name__ == "__main__":
    loop = asyncio.get_event_loop()
    loop.run_until_complete(helper())
    loop.close()
Run Code Online (Sandbox Code Playgroud)

输出是:

starting 1
starting 2
starting 3
starting 4
starting 5
starting 6
starting 7
starting 8
starting 9
starting 10
ending 1
ending 2
ending 3
ending 4
ending 5
ending 6
ending 7
ending 8
ending 9
ending …
Run Code Online (Sandbox Code Playgroud)

python semaphore python-asyncio

8
推荐指数
1
解决办法
6429
查看次数

标签 统计

python ×1

python-asyncio ×1

semaphore ×1