码迷,mamicode.com
首页 > 编程语言 > 详细

多线程:获取网页状态码

时间:2014-12-17 09:42:56      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   color   os   sp   for   on   

#-*- coding:utf-8 -*-  
import urllib
import threading

def func(url):
    status = urllib.urlopen(url).code
    print status
    
urlinfo = [http://www.sohu.com,http://www.163.com,http://www.sina.com]
for url in urlinfo:
    th = threading.Thread(target = func,args = [url])
    th.start()
    th.join()
    
print u又完事儿了。。

bubuko.com,布布扣

多线程:获取网页状态码

标签:style   blog   http   ar   color   os   sp   for   on   

原文地址:http://www.cnblogs.com/predator-wang/p/4168638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!