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

积累 自定义 Python 函数

时间:2014-12-11 12:02:33      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:blog   ar   os   on   div   log   ad   html   ef   

简单爬虫常用

#获取网络内容
def getWebContent(url):
    headers = {‘User-Agent‘:‘Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_0) AppleWebKit/535.11 (KHTML, like Gecko) Chrome/17.0.963.56 Safari/535.11‘}
    req = urllib2.Request(url, headers=headers)
    html = urllib2.urlopen(req).read()
    return html

#下载图片
def downloadImage(imageUrl,localName):
    data = urllib2.urlopen(imageUrl).read()
    fi=open(localName,‘wb‘)
    fi.write(data)
    fi.close()

  

积累 自定义 Python 函数

标签:blog   ar   os   on   div   log   ad   html   ef   

原文地址:http://www.cnblogs.com/pengzhong/p/PythonCustomFunctions.html

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