I want extract some data and put there in excel.
My problem is with extract, I don't take all information than I see with element inspection. With element inspection I see every element, brand, km, price etc... and all of this information are in my extract but in script and not like of what I see in website.
URL of extract : https://www.alcopa-auction.fr/salle-de-vente-encheres/nancy/2110
import requests
from bs4 import BeautifulSoup
URL = 'https://www.alcopa-auction.fr/salle-de-vente-encheres/nancy/2110'
page = requests.get(URL)
headers = {"User-Agent": 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.4 Safari/605.1.15'}
page = requests.get(URL, headers=headers)
soup = BeautifulSoup(page.content, 'html.parser')
print(soup)