1、可以通過gevent輕松實(shí)現(xiàn)并發(fā)同步或異步編程。gevent中使用的主要模式是Greenlet,它是以C擴(kuò)展模塊的形式訪問Python的輕量級(jí)協(xié)程。
2、Greenlet全部運(yùn)行在主程序操作系統(tǒng)的過程中,但是它們是協(xié)作調(diào)度的。
實(shí)例
fromgeventimportmonkey;#為了能識(shí)別time模塊的io
monkey.patch_all()#必須放到被打補(bǔ)丁者的前面,如time,socket模塊之前
importgevent
#pipinstallgevent
fromtimeimporttime,sleep
defgf(name):
print(f'{name}:我想打王者!!')
#gevent.sleep(2)
sleep(2)
print(f'{name}:我想吃大餐!!!')
defbf(name):
print(f'{name}:一起打!!!')
#gevent.sleep(2)
sleep(2)
print(f'{name}:一快去吃!!')
if__name__=="__main__":
start=time()
#創(chuàng)建協(xié)程對象
g1=gevent.spawn(gf,'貂蟬')
g2=gevent.spawn(bf,'呂布')
#開啟任務(wù)
g1.join()
g2.join()
end=time()
print(end-start)
以上內(nèi)容為大家介紹了Python培訓(xùn)之Gevent的使用,希望對大家有所幫助,如果想要了解更多Python相關(guān)知識(shí),請關(guān)注IT培訓(xùn)機(jī)構(gòu):千鋒教育。