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

用python写网络爬虫 -从零开始 2 编写网站地图爬虫

时间:2017-10-08 21:33:23      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:sitemap   item   网站   开始   raw   map   rac   file   地图   

一般网站都会有robots.txt文件,在这个文件规定了允许网络爬虫访问的目录,也规定了禁止爬虫访问的目录。
要重视这个文件的原因是,访问了禁止目录,会被禁止你的ip地址访问

以下定义了一个网站地图爬虫,


 


def crawl_sitemap(url):
# download the sitemap file
sitemap = download(url)
# extract the sitemap links
links = re.findall(‘<loc>(.*?)</loc>‘, sitemap)
# download each link
for link in links:
html = download(link)
# scrape html here
# ...

用python写网络爬虫 -从零开始 2 编写网站地图爬虫

标签:sitemap   item   网站   开始   raw   map   rac   file   地图   

原文地址:http://www.cnblogs.com/mrruning/p/7638441.html

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