Python 多线程实例详解


Posted in Python onMarch 25, 2017

Python 多线程实例详解

多线程通常是新开一个后台线程去处理比较耗时的操作,Python做后台线程处理也是很简单的,今天从官方文档中找到了一个Demo.

实例代码:

import threading, zipfile 
 
class AsyncZip(threading.Thread): 
  def __init__(self, infile, outfile): 
    threading.Thread.__init__(self) 
    self.infile = infile 
    self.outfile = outfile 
  def run(self): 
    f = zipfile.ZipFile(self.outfile, 'w', zipfile.ZIP_DEFLATED) 
    f.write(self.infile) 
    f.close() 
    print('Finished background zip of:', self.infile) 
 
background = AsyncZip('mydata.txt', 'myarchive.zip') 
background.start() 
print('The main program continues to run in foreground.') 
 
background.join()  # Wait for the background task to finish 
print('Main program waited until background was done.')

结果:

The main program continues to run in foreground. 
Finished background zip of: mydata.txt 
Main program waited until background was done. 
Press any key to continue . . .

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

Python 相关文章推荐
使用python实现拉钩网上的FizzBuzzWhizz问题示例
May 05 Python
AI人工智能 Python实现人机对话
Nov 13 Python
python基础教程项目五之虚拟茶话会
Apr 02 Python
pycharm中使用anaconda部署python环境的方法步骤
Dec 19 Python
PyCharm+Qt Designer+PyUIC安装配置教程详解
Jun 13 Python
django-rest-framework解析请求参数过程详解
Jul 18 Python
使用python实现离散时间傅里叶变换的方法
Sep 02 Python
python中urllib.request和requests的使用及区别详解
May 05 Python
python实现PolynomialFeatures多项式的方法
Jan 06 Python
python某漫画app逆向
Mar 31 Python
Opencv中cv2.floodFill算法的使用
Jun 18 Python
Python实现老照片修复之上色小技巧
Oct 16 Python
解决python3 urllib中urlopen报错的问题
Mar 25 #Python
Python制作Windows系统服务
Mar 25 #Python
Python 类的继承实例详解
Mar 25 #Python
python利用拉链法实现字典方法示例
Mar 25 #Python
python3实现ftp服务功能(服务端 For Linux)
Mar 24 #Python
python3实现ftp服务功能(客户端)
Mar 24 #Python
Python 中urls.py:URL dispatcher(路由配置文件)详解
Mar 24 #Python
You might like
php session 错误
2009/05/21 PHP
php入门学习知识点六 PHP文件的读写操作代码
2011/07/14 PHP
php实现的返回数据格式化类实例
2014/09/22 PHP
php中http与https跨域共享session的解决方法
2014/12/20 PHP
简单的php+mysql聊天室实现方法(附源码)
2016/01/05 PHP
Zend Framework教程之动作的基类Zend_Controller_Action详解
2016/03/07 PHP
php版微信js-sdk支付接口类用法示例
2016/10/12 PHP
JavaScript多线程的实现方法
2007/05/08 Javascript
javascript学习笔记(十) js对象 继承
2012/06/19 Javascript
JavaScript高级程序设计 阅读笔记(二十一) JavaScript中的XML
2012/09/14 Javascript
JS使用replace()方法和正则表达式进行字符串的搜索与替换实例
2014/04/10 Javascript
JavaScript编程中window的location与history对象详解
2015/10/26 Javascript
利用Bootstrap实现表格复选框checkbox全选
2016/12/21 Javascript
微信小程序picker组件简单用法示例【附demo源码下载】
2017/12/05 Javascript
使用live-server快速搭建本地服务器+自动刷新的方法
2018/03/09 Javascript
JavaScript设计模式之原型模式分析【ES5与ES6】
2018/07/26 Javascript
24行JavaScript代码实现Redux的方法实例
2019/11/17 Javascript
配置 Pycharm 默认 Test runner 的图文教程
2018/11/30 Python
django 快速启动数据库客户端程序的方法示例
2019/08/16 Python
通过实例学习Python Excel操作
2020/01/06 Python
python 连续不等式语法糖实例
2020/04/15 Python
详解python爬取弹幕与数据分析
2020/11/14 Python
英国婚礼商城:Wedding Mall
2019/11/02 全球购物
.NET程序员的数据库面试题
2012/10/10 面试题
C#如何进行LDAP用户校验
2012/11/21 面试题
土木工程实习生自我鉴定
2013/09/19 职场文书
日语专业毕业生自荐信
2013/11/11 职场文书
幼儿园亲子活动方案
2014/01/29 职场文书
护理专业自荐信范文
2014/02/26 职场文书
最新结婚典礼主持词
2014/03/14 职场文书
田径运动会通讯稿
2014/09/13 职场文书
冲出亚马逊观后感
2015/06/03 职场文书
原来实习报告是这样写的呀!
2019/07/03 职场文书
Vue如何实现组件间通信
2021/05/15 Vue.js
python四种出行路线规划的实现
2021/06/23 Python
MySQL利用UNION连接2个查询排序失效详解
2021/11/20 MySQL