1
我有一個頁面,我需要得到源與BS4一起使用,但頁面中間需要1秒(可能更少)來加載內容,並且requests.get在部分加載之前捕獲頁面的源,在獲取數據之前如何等待一秒?等待頁面加載,然後用requests.get獲取數據在python 3
r = requests.get(URL + self.search, headers=USER_AGENT, timeout=5)
soup = BeautifulSoup(r.content, 'html.parser')
a = soup.find_all('section', 'wrapper')
<section class="wrapper" id="resultado_busca">