Я создал паука, расширив CrawlSpider.
Когда паук запускается и находит страницу статьи, я хочу получить ссылку на профиль автора и сделать запрос на страницу профиля и проанализировать его с помощью parse_author, но для некоторыхпричина, этот обратный вызов parse_author никогда не выполняется.
Мой код:
import scrapy
from scrapy.spiders import CrawlSpider, Rule
from scrapy.linkextractors import LinkExtractor
from scrapy.http.request import Request
class CityamSpider4(CrawlSpider):
name = "city_am_v4"
custom_settings = {
'CONCURRENT_REQUESTS': '1',
}
allowed_domains = ['cityam.com']
start_urls = [
'http://www.cityam.com',
]
rules = (
Rule(LinkExtractor(deny=('dev2.cityam.com', 'sponsored-content', )), callback='parse_item'),
)
def parse_item(self, response):
# parse article page
article_title = response.css('.article-headline h1::text').extract_first(default='null').strip()
if article_title is not 'null':
print 'Article url : ' + response.url
author_url = response.css('.author-container .author-text a.author-name::attr(href)').extract_first(default='null').strip()
print 'Author link: ' + author_url
author_url = response.urljoin(author_url)
print 'Author link: ' + author_url
yield Request(author_url, callback=self.parse_author)
def parse_author(self, response):
# parse author page
author_name = response.css(".cam-profile-header-title::text").extract_first(default='null').strip()
print 'Author name: ' + author_name
yield {
'name': author_name,
}