最新文章專題視頻專題問答1問答10問答100問答1000問答2000關鍵字專題1關鍵字專題50關鍵字專題500關鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關鍵字專題關鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當前位置: 首頁 - 科技 - 知識百科 - 正文

python asyncio

來源:懂視網 責編:黃老五 時間:2022-01-24 09:36:48
文檔

python asyncio

python協(xié)程庫asyncio運行主要有三種,一是用asyncio.run()函數在非協(xié)程函數中調用協(xié)程,二是用 await等待一個協(xié)程,三是使用asyncio.gather()函數來并發(fā)多個協(xié)程。
推薦度:
導讀python協(xié)程庫asyncio運行主要有三種,一是用asyncio.run()函數在非協(xié)程函數中調用協(xié)程,二是用 await等待一個協(xié)程,三是使用asyncio.gather()函數來并發(fā)多個協(xié)程。

python協(xié)程庫asyncio的運行方式有哪些?我們一起了解一下吧!

asyncio 是以協(xié)程的模式來編寫并發(fā)的庫,使用 async/await 語法。在 IO密集型 的網絡編程里,異步IO 協(xié)程 省去了開辟新的線程和進程的開銷。asyncio 是 Python3.4 版本引入到標準庫,python3.5 加入了 async/await 特性。下面我們就來分享一下運行協(xié)程的幾種方式。

使用 async 聲明協(xié)程

async def asyncTask():

    # 協(xié)程休眠

    await asyncio.sleep(1)

    print(time.strftime('%X'))

運行協(xié)程的幾種方式:

1、asyncio.run() 函數用來在非協(xié)程函數中調用協(xié)程

asyncio.run(asyncTask())

2、使用 await 等待一個協(xié)程。

await asyncTask()

3、asyncio.create_task() 用函數將協(xié)程打包為一個 Task 排入日程準備執(zhí)行,返回 asyncio.Task 對象。

此函數 在 Python 3.7 中被加入。

task1 = asyncio.create_task(asyncTask1())task2 = asyncio.create_task(asyncTask2())await task1await task2

4、使用 asyncio.gather() 函數來并發(fā)多個協(xié)程。

tasks = asyncio.gather(asyncTask1(), asyncTask2())tasks2 = asyncio.gather(*[asyncTask1(), asyncTask2()])await tasksawait tasks2

具體示例:

import asyncioimport time# 定義協(xié)程任務async def asyncTask1():

    # 協(xié)程休眠

    await asyncio.sleep(1)

    print(time.strftime('%X'), 1)async def asyncTask2():

    await asyncio.sleep(2)

    print(time.strftime('%X'), 2)async def main():

    task1 = asyncio.create_task(asyncTask1())

    task2 = asyncio.create_task(asyncTask2())

    tasks = asyncio.gather(asyncTask1(), asyncTask2())

    tasks2 = asyncio.gather(*[asyncTask1(), asyncTask2()])    await tasks    await tasks2    await task1    await task2

print(time.strftime('%X'), "start")

asyncio.run(main())

print(time.strftime('%X'), "end")

關于運行協(xié)程的方式,我們就了解到這啦!


聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

python asyncio

python協(xié)程庫asyncio運行主要有三種,一是用asyncio.run()函數在非協(xié)程函數中調用協(xié)程,二是用 await等待一個協(xié)程,三是使用asyncio.gather()函數來并發(fā)多個協(xié)程。
推薦度:
標簽: python asyncio
  • 熱門焦點

最新推薦

猜你喜歡

熱門推薦

專題
Top