首页
Web开发
Windows程序
编程语言
数据库
移动开发
系统相关
微信
其他好文
会员
首页
>
编程语言
> 详细
Python 线程池的实现
时间:
2015-05-13 12:20:27
阅读:
182
评论:
0
收藏:
0
[点我收藏+]
标签:
import urllib2
import time
import socket
from datetime
import datetime
from thread_pool
import *
def main():
url_list = {
"sina":
"http://www.sina.com.cn",
"sohu":
"http://www.sohu.com",
"yahoo":
"http://www.yahoo.com",
"xiaonei":
"http://www.xiaonei.com",
"qihoo":
"http://www.qihoo.com",
"laohan":
"http://www.laohan.org",
"eyou":
"http://www.eyou.com",
"chinaren":
"http://www.chinaren.com",
"douban":
"http://www.douban.com",
"163":
"http://www.163.com",
"daqi":
"http://www.daqi.com",
"qq":
"http://www.qq.com",
"baidu_1":
"http://www.baidu.com/s?wd=asdfasdf",
"baidu_2":
"http://www.baidu.com/s?wd=dddddddf",
"google_1":
"http://www.baidu.com/s?wd=sadfas",
"google_2":
"http://www.baidu.com/s?wd=sadflasd",
"hainei":
"http://www.hainei.com",
"microsoft":
"http://www.microsoft.com",
"wlzuojia":
"http://www.wlzuojia.com"}
#使用线程池
socket.setdefaulttimeout(
10)
print
‘start testing‘
wm = WorkerManager(
50)
for url_name
in url_list.keys():
wm.add_job(do_get_con, url_name, url_list[url_name])
wm.wait_for_complete()
print
‘end testing‘
def do_get_con(url_name,url_link):
try:
fd = urllib2.urlopen(url_link)
data = fd.read()
f_hand = open(
"/tmp/ttt/%s" % url_name,
"w")
f_hand.write(data)
f_hand.close()
except Exception,e:
pass
if __name__ ==
"__main__":
main()
thread_pool的代码(非原创,转自:http://blog.daviesliu.net/
2006/
10/
09/
234822/)
import Queue, threading, sys
from threading
import Thread
import time
import urllib
# working thread
class Worker(Thread):
worker_count =
0
timeout =
1
def __init__(
self, workQueue, resultQueue, **kwds):
Thread.__init__(
self, **kwds )
self.id = Worker.worker_count
Worker.worker_count +=
1
self.setDaemon(
True )
self.workQueue = workQueue
self.resultQueue = resultQueue
self.start( )
def run(
self ):
‘‘
‘‘‘ the get-some-work, do-some-work main loop of worker threads ‘‘‘
while
True:
try:
callable, args, kwds =
self.workQueue.get(timeout=Worker.timeout)
res = callable(*args, **kwds)
print
"worker[%2d]: %s" % (
self.id, str(res) )
self.resultQueue.put( res )
#time.sleep(Worker.sleep)
except Queue.Empty:
break
except :
print
‘worker[%2d]‘ %
self.id, sys.exc_info()[:
2]
raise
class WorkerManager:
def __init__(
self, num_of_workers=
10, timeout =
2):
self.workQueue = Queue.Queue()
self.resultQueue = Queue.Queue()
self.workers = []
self.timeout = timeout
self._recruitThreads( num_of_workers )
def _recruitThreads(
self, num_of_workers ):
for i
in range( num_of_workers ):
worker = Worker(
self.workQueue,
self.resultQueue )
self.workers.append(worker)
def wait_for_complete(
self):
# ...then, wait for each of them to terminate:
while len(
self.workers):
worker =
self.workers.pop()
worker.join( )
if worker.isAlive()
and
not
self.workQueue.empty():
self.workers.append( worker )
print
"All jobs are are completed."
def add_job(
self, callable, *args, **kwds ):
self.workQueue.put( (callable, args, kwds) )
def get_result(
self, *args, **kwds ):
return
self.resultQueue.get( *args, **kwds )
Python 线程池的实现
标签:
原文地址:http://www.cnblogs.com/skying555/p/4499565.html
踩
(
0
)
赞
(
0
)
举报
评论
一句话评论(
0
)
登录后才能评论!
分享档案
更多>
2021年07月29日 (22)
2021年07月28日 (40)
2021年07月27日 (32)
2021年07月26日 (79)
2021年07月23日 (29)
2021年07月22日 (30)
2021年07月21日 (42)
2021年07月20日 (16)
2021年07月19日 (90)
2021年07月16日 (35)
周排行
更多
Spring Cloud 从入门到精通(一)Nacos 服务中心初探
2021-07-29
基础的排序算法
2021-07-29
SpringBoot|常用配置介绍
2021-07-29
关于 .NET 与 JAVA 在 JIT 编译上的一些差异
2021-07-29
C语言常用函数-toupper()将字符转换为大写英文字母函数
2021-07-29
《手把手教你》系列技巧篇(十)-java+ selenium自动化测试-元素定位大法之By class name(详细教程)
2021-07-28
4-1 YAML配置文件 注入 JavaBean中
2021-07-28
【python】 用来将对象持久化的 pickle 模块
2021-07-28
马拉车算法
2021-07-28
用Python进行冒泡排序
2021-07-28
友情链接
兰亭集智
国之画
百度统计
站长统计
阿里云
chrome插件
新版天听网
关于我们
-
联系我们
-
留言反馈
© 2014
mamicode.com
版权所有 联系我们:gaon5@hotmail.com
迷上了代码!