免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2586 | 回复: 0
打印 上一主题 下一主题

请问如何让python进行urllib2的多线程检查[符代码] [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-10-21 15:29 |只看该作者 |倒序浏览
如题,文件可以用多线程读出来 ,但是读出后 还是1个个的去检查,还请帮忙
web.py
#!/usr/bin/env python
#coding=utf-8

import urllib
import urllib2
from time import ctime
from checkfd import check_report

def check_url(url_name):
    try:
        h=urllib2.HTTPHandler(debuglevel=0)
        opener = urllib2.build_opener(h)
        request = urllib2.Request(url_name)
        feeddata = opener.open(request, timeout = 2).read()
        return True
    except urllib2.URLError, e:
        return False
   
replog = check_report()
   
def report_url(url_name):
    protocol = 'http://'
    url_name = url_name
    url = protocol + url_name
    f= file(replog, 'a+')
    if check_url(url):
        print "%s find" % url
    else:
        sl = "# " + ctime() + "错误,无法访问 %s\n" % url
        f.write(sl)
    f.close()

check_report
#检查report文件
def check_report():
    dir_patch = os.path.join(os.path.dirname(__file__),'report')
    if os.path.isdir(dir_patch):
        report_patch = os.path.join(dir_patch,'report.log')
        if os.path.isfile(report_patch):
            return report_patch
        else:
            f= file(report_patch, 'w')
            f.write('#输出检查报告\n')
            f.close()
            return report_patch
    else:
        os.mkdir(dir_patch)

主文件
#!/usr/bin/env python
#coding=utf-8

import threading
from time import ctime, sleep
import string
import os
import sys
from web import report_url

class rf(object):
    #得到文件的全路径和文件名
    file_patch = os.path.join(os.path.dirname(__file__),'test2.txt')
    #以读写模式打开文件
    f = open(file_patch, 'r+')
    d = []
    def fb(self):
        #每次读取文件的1行
        try:
            for eachLine in self.f:
                #print eachLine.split()[1]
                report_url(eachLine.split()[1])
                #self.d.append(eachLine.split()[1])
        #文件读完后的异常
        except ValueError, e:
            pass
        self.f.close()
        
if __name__ == '__main__':
    fa = rf()
    ct = []
    for i in xrange(1,5):
        #t = threading.Thread(target = report_url, args = ab)
        t = threading.Thread(target = fa.fb())
        #t = threading.Thread(target = report_url, args = [fa.fb()])
        t.setDaemon(1)
        t.start()
        ct.append(t)
    for t in ct:
        t.join()
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP