Сделал вот так и все равнов USD : def parse(self, response):
posturl = '
https://www.tmart.com/zc/filter/init/set_area_info'
for link in response.xpath(
"//div[
@class='na_list_product_name']/a/@href").extract():
callback = response.xpath(
"//div[
@class='na_list_product_name']/a/@href").extract()
yield scrapy.FormRequest(link, formdata={'currency': 'EUR'},
callback=self.parse_item)
NEXT_PAGE_SELECTOR = '.zc-next a::attr(href)'
next_page = response.css(NEXT_PAGE_SELECTOR).extract_first()
if next_page:
yield scrapy.FormRequest(next_page, formdata={'currency': 'EUR'},
callback=self.parse)