實現爬取一天的天氣預報
非常簡單的一個小爬蟲,利用的也是基本的request、BeautifulSoup、re庫,算是簡單的上手一個小測試吧
from urllib.request import urlopen
from bs4 import BeautifulSoup
import re
resp=urlopen('http://www.weather.com.cn/weather/101270101.shtml')
soup=BeautifulSoup(resp,'html.parser')
tagDate=soup.find('ul', class_="t clearfix")
dates=tagDate.h1.string
tagToday=soup.find('p', class_="tem")
try:
temperatureHigh=tagToday.span.string
except AttributeError as e:
temperatureHigh=tagToday.find_next('p', class_="tem").span.string
temperatureLow=tagToday.i.string
weather=soup.find('p', class_="wea").string
tagWind=soup.find('p',class_="win")
winL=tagWind.i.string
print('今天是:'+dates)
print('風級:'+winL)
print('最低溫度:'+temperatureLow)
print('最高溫度:'+temperatureHigh)
print('天氣:'+weather)
