为了账号安全,请及时绑定邮箱和手机立即绑定

正在回答

1 回答

调用urlopen时要加timeout, 否则网速不好的时候容易卡死.

html_downloader.py:

# coding: UTF-8
import urllib2

class HtmlDownloader(object):
    def __init__(self):
        pass
        
    def download(self, url):
        if url is None:
            return None
        response = urllib2.urlopen(url,timeout=5)
        
        if response.getcode() != 200:
            print '   --> Can not open url:', url
            return None
            
        html_doc = response.read()
        # print html_doc
               
        return html_doc


1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Python开发简单爬虫
  • 参与学习       227670    人
  • 解答问题       1219    个

本教程带您解开python爬虫这门神奇技术的面纱

进入课程

爬到74卡住了

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信