我想抓取以下网页。 https://stadt-aachen.e2watch.de/details/objekt/175 我想获取任何特定日期的页面图形。我不知道我应该为哪个报废课程写作。 我正在使用下面的代码,但得到空字符串。
import bs4
import requests
from bs4 import BeautifulSoup
r= requests.get('https://stadt-aachen.e2watch.de/details/objekt/175')
soup = bs4.BeautifulSoup(r.text,"xml")
soup.find_all('div',{'class':'highcharts-container '})