试图从 Weather Underground 中获取一些天气数据。在获取日期/日期、高/低温度和预报(即“部分多云”)之前,我一直没有遇到任何困难获取感兴趣的数据。每个都在一个没有类的 div 中。每个的父级都是一个带有 class="obs-date" 的 div(见下图)
[WxUn HTML 图像][1]
在下面尝试使用注释掉其他选项的代码。每个返回一个空列表。
def get_wx(city, state):
city=city.lower()
state=state.lower()
# get current conditions; 'weather' in url
current_dict = get_current(city, state)
# get forecast; 'forecast' in url
f_url = f'https://www.wunderground.com/forecast/us/{state}/{city}'
f_response = req.get(f_url)
f_soup = BeautifulSoup(f_response.text, 'html.parser')
cast_dates = f_soup.find_all('div', class_="obs-date")
# cast_dates = f_soup.find_all('div', attrs={"class":"obs-date"})
# cast_dates = f_soup.select('div.obs-date')
print(cast_dates)
get_wx("Portland", "ME")
对我所缺少的任何帮助表示感谢。
答案 0 :(得分:0)
据我所知,您尝试解析的整个块都是由 javascript 驱动的,这就是您使用 beautifulsoup
获得空结果的原因
ADDITIONAL CONDITIONS 部分可以使用 bs4
以及以下所有内容完全解析。可以使用 pandas
解析末尾的表。
要抓取 JavaScript 内容,您可以使用 requests-html
或 selenium
库。
from requests_html import HTMLSession
import json
session = HTMLSession()
url = "https://www.wunderground.com/weather/us/me/portland"
response = session.get(url)
response.html.render(sleep=1)
data = []
current_date = response.html.find('.timestamp strong', first = True).text
weather_conditions = response.html.find('.condition-icon p', first = True).text
gusts = response.html.find('.medium-uncentered span', first = True).text
current_temp = response.html.find('.current-temp .is-degree-visible', first = True).text
data.append({
"Last update": current_date,
"Current weather": weather_conditions,
"Temperature": current_temp,
"Gusts": gusts,
})
print(json.dumps(data, indent = 2, ensure_ascii = False))
输出:
[
{
"Last update": "1:27 PM EDT on April 14, 2021",
"Current weather": "Fair",
"Temperature": "49 F",
"Gusts": "13 mph"
}
]