python 协程之Greenlet

Posted 平常心u

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 协程之Greenlet相关的知识,希望对你有一定的参考价值。

greenlet是一个用C实现的协程模块,相比与python自带的yield,它可以使你在任意函数之间随意切换,而不需把这个函数先声明为generator。

from greenlet import greenlet
def test1():
    print(12)
    gr2.switch()
    print(34)
    gr2.switch()
def test2():
    print(56)
    gr1.switch()
    print(78)
gr1=greenlet(test1)
gr2=greenlet(test2)
gr1.switch()            #切换

 

以上是关于python 协程之Greenlet的主要内容,如果未能解决你的问题,请参考以下文章

协程之 greenlet模块

Python协程之asyncio

python协程之动态添加任务

Python 协程 greenlet

python-greenlet模块(协程)

python 并发编程 协程 greenlet模块