Я пишу веб-сканер с Python Scrapy, который просматривает несколько страниц каталога тегов и получает все теги и их статьи.
Итак, я получил этот метод разбора, при котором паук пробегает каждую страницу.
def parse_word(self, response):
# look for all tags on this site
tagscount = response.xpath('someXpath').extract()
# check if there is a nextPage
nextPage = response.css('somecssSelector').extract()
lastPage = response.css('somecssSelector').extract()
# Open every tagsite and crawl it if all tags are gained
if not nextPage or lastPage:
for tag in tagscount:
# call parse method for article crawling
data = scrapy.Request(url=tag, callback=self.parse_subpage)
yield data
# If there is a nextPage with tags request with this method recursively
else:
# a little bit of formatting for linktype
nextPageStr = str(nextPage)
cutNextPageStr = nextPageStr.replace("[","")
cutNextPageStr = cutNextPageStr.replace("]", "")
cutNextPageStr = cutNextPageStr.replace("'", "")
link = urljoin(response.url, cutNextPageStr)
# Call this method again --> here i want to set a parameter tagscount or something like this
data = scrapy.Request(url=link, callback=self.parse_word)
yield data
В разделе else я хочу дать методу parse_word полученные теги, но весь метод принимает только теги последнего сайта.
Кто-нибудь может мне помочь?