2017年3月15日

python-一个小爬虫,爬取图片

摘要: import reimport urllib.request# 爬取网页def getHtml(url): page=urllib.request.urlopen(url) html=page.read() return html# 获取图片地址def getImg(html): rule=r'src="(.*?\.jpg)" width' rule_compil... 阅读全文

posted @ 2017-03-15 16:48 舞曲 阅读(157) 评论(0) 推荐(0) 编辑

导航