Answer the question
In order to leave comments, you need to log in
How to parse re:store?
I want to get the names of products, their category and data. When I request html, I get something strange. What to do?
The code:
import requests
from bs4 import BeautifulSoup
HEADERS = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Safari/537.36'}
def get_data():
response = requests.get(url=f'https://re-store.ru/apple-mac/', headers=HEADERS)
html = response.text
soup = BeautifulSoup(html, 'lxml')
items = soup.find('div', {'class': 'catalog-items'})
return items
print(get_data())
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question