I need to extract the sales data for new cars on some websites.
One of the sites is the Locamerica company. However, on her site does not appear in the page HTML content that I need to extract.
I need to extract the data of each car present on the page, but they do not appear in the HTML. Not even external links to the car page appear.
I downloaded the source code, I ran it and it appears the same site but without any car. Link of the HTML that appears to me
I'm programming in python and I use Requests to get the HTML of the page and Beutiful Soup to extract the data I need.
The code
import requests as req
from bs4 import BeautifulSoup as bs
url = "https://seminovos.locamerica.com.br/seu-carro?combustivel=&cor=&q=&cambio=&combustiveis=&cores=&acessorios=&estado=0&loja=0&marca=0&modelo=0&anode=&anoate=&per_page={}&precode=0&precoate=0"
indice_pagina = 1
r = req.get(url.format(indice_pagina))
print(r.text)