与gmail交互的Python接口。

backp的Python项目详细描述


在 在后台运行函数的Python接口。

功能:

  • 后台-在后台运行函数

用法:

    >>> import backpy
    >>> def myFunction(text):
            while 1:
                print(text)
>>> thread = backpy.background(target = myFunction, args = ("hello!")) # run
>>> # the function myFunction in the background with args ("hello!")
>>> thread._stop() # stop the thread.
>>> def myEndFunction(data):
        print('Finished', data)

>>> thread = backpy.background(mode = 'basic+finish',
                               target = myFunction, args = ("hello!"),
                               finish = myEndFunction, fargs = ("data"))
>>> thread._stop() # stop the thread.  </pre>

欢迎加入QQ群-->: 979659372 Python中文网_新手群

推荐PyPI第三方库


热门话题
java有没有办法使多个对象初始化更紧凑?   java确保BUnit包和测试包不包含在生产代码中   java如何使JTextField更小,而不是填满整个空间?   javaawt的矩形交点   用户连续登录应用程序的java条纹(Android)   maven如何在服务器上运行java项目,并将其作为jar添加到EAR项目中   java如何在jar/war的资源文件夹中创建png?   swing在Java中未选择列表项时禁用按钮   java GridView x BaseAdapter并在onItemClick中重新加载   java Apache POI未应用某些颜色索引   java创建URL使用uri有什么区别。解析/uri。生成器/连接字符串?   java JavaFX jfoenix运行时错误(JFXDatePicker)   右旋转二叉搜索树   在Java标准版中运行Java移动应用程序   java为什么要为每个实例创建静态hashmap?   java如何使用RTC唤醒和报警意图   java获取对象中的JSON表达式   (Java)服务器不接受多个连接   java为什么我的目的地为null?   java使用多个参数执行存储过程,并使用spring数据jpa将结果集映射到非实体类