A
A
Abraham lary2022-04-03 17:26:00
Python
Abraham lary, 2022-04-03 17:26:00

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())

Received: None

When requesting html I get:
view-source:https://re-store.ru/apple-mac/

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
AVKor, 2022-04-04
@AVKor

response = requests.get(url=f'https://re-store.ru/apple-mac/', headers=HEADERS)

Why is there an f-string?
items = soup.find('div', {'class': 'catalog-items'})

divThere is no such class on the page .
And all the content is in javascript.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question