Scraper: https://shop.super-pharm.co.il/
import requests from lxml import html url = 'https://shop.super-pharm.co.il/' response = requests.get(url) tree = html.fromstring(response.content) data_1 = tree.xpath('//*[@id="home-boxes"]/div/div[2]/section/div/div[3]/a/div[2]/p') print('//*[@id="home-boxes"]/div/div[2]/section/div/div[3]/a/div[2]/p ->', data_1) data_2…
