ЛГ
Size: a a a
ЛГ
ЛГ
ЛГ
ЛГ
ЛГ
ЛГ
G
for i in range(len(full_product_url)):
yield scrapy.Request(full_product_url[i], callback=self.price_parse,
meta={'product_url': full_product_url[i]})
next_page = response.xpath('//div[@class="pagination span12"]//li[last()]/a/@href').extract_first()
if next_page:
yield scrapy.Request(
response.urljoin(next_page),
callback=self.parse
)
ЛГ
SS
S
for i in range(len(full_product_url)):
yield scrapy.Request(full_product_url[i], callback=self.price_parse,
meta={'product_url': full_product_url[i]})
next_page = response.xpath('//div[@class="pagination span12"]//li[last()]/a/@href').extract_first()
if next_page:
yield scrapy.Request(
response.urljoin(next_page),
callback=self.parse
)
AR
AR
МС
AR
AR