Python 使用BeautifulSoup进行网页抓取(图形抓取)

Python 使用BeautifulSoup进行网页抓取(图形抓取),python,html,web-scraping,beautifulsoup,Python,Html,Web Scraping,Beautifulsoup,我想刮掉下面的网页。 我想得到任何特定日期的页面图表。我不明白我应该写哪门课来复习。 我正在使用下面的代码,但得到的是空字符串 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_

我想刮掉下面的网页。 我想得到任何特定日期的页面图表。我不明白我应该写哪门课来复习。 我正在使用下面的代码,但得到的是空字符串

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 '})

你到底想提取什么?给定链接的图形/图表。欢迎使用SO。您正在使用Beatufulsoup删除网页,但图形不是纯HTML,或者换句话说,是从数据中呈现的。你的问题不清楚你是在寻找用于生成图形的数据还是图形本身,它可能是图像格式的。我想要图形中的数据和图像。