【发布时间】:2015-07-03 09:46:26
【问题描述】:
我试图让 Scrapy 爬过一个网站,但只将它限制在与特定模式匹配的页面上,这让我很头疼。
网站结构如下:
website.com/category/page1/
website.com/category/page2/
website.com/category/page3/
等等。
我需要它从 category 开始爬取,然后跟随所有指向另一个页面的链接(总共有 375 个页面,当然数量不固定)。
问题是它在我停止它之前爬了大约 10 页,但它只返回 10-15 个项目,其中应该有 200+
这是我的代码,它不能正常工作:
class WSSpider(CrawlSpider):
name = "ws"
allowed_domains = ["website.com"]
start_urls = ["https://www.website.com/category/"]
rules = (
Rule(LinkExtractor(allow=("/level_one/page*",)), callback="parse_product", follow=True),
)
def parse_product(self, response):
sel = Selector(response)
sites = sel.css(".pb-infos")
items = []
for site in sites:
item = Website()
item["brand"] = site.css(".pb-name .pb-mname::text").extract()
item["referinta"] = site.css(".pb-name a::text").extract()
item["disponibilitate"] = site.css(".pb-availability::text").extract()
item["pret_vechi"] = site.css(".pb-sell .pb-old::text").extract()
item["pret"] = site.css(".pb-sell .pb-price::text").extract()
item["procent"] = site.css(".pb-sell .pb-savings::text").extract()
items.append(item)
#return items
f = open("output.csv", "w")
for item in items:
line = \
item["brand"][0].strip(), ";", \
item["referinta"][-1].strip(), ";", \
item["disponibilitate"][0].strip(), ";", \
item["pret_vechi"][0].strip().strip(" lei"), ";", \
item["pret"][0].strip().strip(" lei"), ";", \
item["procent"][0].strip().strip("Mai ieftin cu "), "\n"
f.write("".join(line))
f.close()
非常感谢任何帮助!
【问题讨论】:
标签: python web web-crawler scrapy depth