美文网首页python交流学习
你知道Python有一个并发编程库吗?goless

你知道Python有一个并发编程库吗?goless

作者: 78c40b03ee4e | 来源:发表于2019-02-21 21:50 被阅读2次

前言

使用goless库,您可以用Python的Go语言风格编写并发程序。goess提供了通道、select和goutines函数,这些函数允许您使用Go语言的漂亮而优雅的并发编程模型,但使用的是您习惯的Python方式。goess构建在gevent、pypy或stackless python上,可用于pypy、cpython和scratch python解释器,支持python 2.6到3.4

示例代码:

"""
A really simple example to use when demonstrating goless.
"""
from __future__ import print_function

import goless


def simple():
    channel = goless.chan()

    def goroutine():
        while True:
            value = channel.recv()
            channel.send(value ** 2)
    goless.go(goroutine)

    for i in range(2, 5):
        channel.send(i)
        squared = channel.recv()
        print('%s squared is %s' % (i, squared))

    # Output:
    # 2 squared is 4
    # 3 squared is 9
    # 4 squared is 16

if __name__ == '__main__':
    simple()

虽然这个库很少会用到, 大家今天还是为大家介绍一下,如果你继续深入学习,总会碰各种各样的问题,如果刚好用上这个库,那是再好不过了,

小编推荐一个学python的学习qun 740322234
无论你是大牛还是小白,是想转行还是想入行都可以来了解一起进步一起学习!裙内有开发工具,很多干货和技术资料分享!

相关文章

网友评论

    本文标题:你知道Python有一个并发编程库吗?goless

    本文链接:https://www.haomeiwen.com/subject/orhjyqtx.html