我在抓取此页面时遇到了麻烦:http://maps.kalkaskacounty.net/propertysearch.asp?PDBsearch=setdo
我的抓取工具获得了子页面的所有链接,并正确地抓取了这些链接(25个结果),但是没有正确提交表单请求以使接下来的25个要抓取的结果(依此类推)。任何人都可以提供任何帮助,我将不胜感激。谢谢!
import scrapy
class ParcelScraperSpider(scrapy.Spider):
name = 'parcel_scraper'
start_urls = ['http://maps.kalkaskacounty.net/propertysearch.asp?PDBsearch=setdo',
'http://maps.kalkaskacounty.net/,']
def parse(self,response):
for href in response.css('a.PDBlistlink::attr(href)'):
yield response.follow(href, self.parse_details)
def next_group(self,response):
return scrapy.FormRequest.from_response(
response,
formdata={'DBVpage':'next'},
formname={'PDBquery'},
callback=self.parse,
)
def parse_details(self,response):
yield {
'owner_name': response.xpath('//td[contains(text(),"Owner Name")]/following::td[1]/text()').extract_first(),
'jurisdiction': response.xpath('//td[contains(text(),"Jurisdiction")]/following::td[1]/text()').extract_first(),
'property_street': response.xpath('//td[contains(text(),"Property Address")]/following::td[1]/div[1]/text()').extract_first(),
'property_csz': response.xpath('//td[contains(text(),"Property Address")]/following::td[1]/div[2]/text()').extract_first(),
'owner_street': response.xpath('//td[contains(text(),"Owner Address")]/following::td[1]/div[1]/text()').extract_first(),
'owner_csz': response.xpath('//td[contains(text(),"Owner Address")]/following::td[1]/div[2]/text()').extract_first(),
'current_tax_value': response.xpath('//td[contains(text(),"Current Taxable Value")]/following::td[1]/text()').extract_first(),
'school_district': response.xpath('//td[contains(text(),"School District")]/following::td[1]/text()').extract_first(),
'current_assess': response.xpath('//td[contains(text(),"Current Assessment")]/following::td[1]/text()').extract_first(),
'current_sev': response.xpath('//td[contains(text(),"Current S.E.V.")]/following::td[1]/text()').extract_first(),
'current_pre': response.xpath('//td[contains(text(),"Current P.R.E.")]/following::td[1]/text()').extract_first(),
'prop_class': response.xpath('//td[contains(text(),"Current Property Class")]/following::td[1]/text()').extract_first(),
'tax_desc': response.xpath('//h3[contains(text(),"Tax Description")]/following::div/text()').extract_first()
}
答案 0 :(得分:0)
通过查看代码,您永远不会调用“ next_group” def类。您调用“ parse”和“ parse_details”,但无法回调next_group。
在这里,使用元标记可以帮助您实现您想做的事情: ***只是一个例子;不要求您提供代码:
# -*- coding: utf-8 -*-
import scrapy
class YourSpiderClassHere(scrapy.Spider):
name = "..."
allowed_domains = ["SomeSite.com"]
start_urls = ['https://somesite.com/myScrappingSite']
def parse(self, response):
listings = response.xpath('//li[@class="result-row"]')
for listing in listings:
date = listing.xpath('.//*[@class="result-date"]/@datetime').extract_first()
link = listing.xpath('.//a[@class="result-title hdrlnk"]/@href').extract_first()
text = listing.xpath('.//a[@class="result-title hdrlnk"]/text()').extract_first()
yield scrapy.Request(link,
callback=self.parse_listing,
meta={'date': date,
'link': link,
'text': text})
next_page_url = response.xpath('//a[text()="next > "]/@href').extract_first()
if next_page_url:
yield scrapy.Request(response.urljoin(next_page_url), callback=self.parse)
def parse_listing(self, response):
date = response.meta['date']
link = response.meta['link']
text = response.meta['text']
compensation = response.xpath('//*[@class="attrgroup"]/span[1]/b/text()').extract_first()
type = response.xpath('//*[@class="attrgroup"]/span[2]/b/text()').extract_first()
address = response.xpath('//*[@id="postingbody"]/text()').extract()
yield {'date': date,
'link': link,
'text': text,
'compensation': compensation,
'type': type,
'address': address}