import requests
from bs4 import BeautifulSoup
import re
url= "https://www.hipodromx.com/galop.aspx?Page=1"
get= requests.get(url)
soup= BeautifulSoup(get.content, "lxml")
for galop in soup.find_all("tr", id=re.compile("ctl00_ContentPlaceHolder1_ASPxPageControl1_grdGalopIstatistik_DXDataRow")):
print(galop.get_text(" ", strip=True))
Bir sitedeki verileri çekmek istiyorum ancak yukarıdaki kod ile sadece default bilgileri(bugune 07.01.2023 e ait) çekebiliyorum. İki tarih arası bilgileri nasıl çekebilirim. HTML kodlarını inceledim sitede tarih değiştirmeme rağmen html kodu değişmiyor. Yol gösterebilirmisiniz.