次のコード (Nathan Yau の「Visualize This」の初期の例を少し変更したもの) を使用して、WUnderGround のサイトから気象データをスクレイピングしています。ご覧のとおり、python はクラス名「wx-data」の要素から数値データを取得しています。
ただし、DailyHistory.htmml から平均湿度も取得したいと思います。 問題は、平均湿度セルの場合のように、すべての「スパン」要素にクラス名があるわけではないことです。BeautifulSoup と以下のコードを使用して、この特定のセルを選択するにはどうすればよいですか?
(スクレイピングされたページの例を次に示します。開発モードに切り替えて「wx-data」を検索し、「span」要素が参照されていることを確認します。
http://www.wunderground.com/history/airport/LAX/2002/1/1/DailyHistory.html )
import urllib2
from BeautifulSoup import BeautifulSoup
year = 2004
#create comma-delim file
f = open(str(year) + '_LAXwunder_data.txt','w')
#iterate through month and day
for m in range(1,13):
for d in range (1,32):
#Chk if already gone through month
if (m == 2 and d > 28):
break
elif (m in [4,6,9,11]) and d > 30:
break
# open wug url
timestamp = str(year)+'0'+str(m)+'0'+str(d)
print 'Getting data for ' + timestamp
url = 'http://www.wunderground.com/history/airport/LAX/'+str(year) + '/' + str(m) + '/' + str(d) + '/DailyHistory.html'
page = urllib2.urlopen(url)
#Get temp from page
soup = BeautifulSoup(page)
#dayTemp = soup.body.wx-data.b.string
dayTemp = soup.findAll(attrs = {'class':'wx-data'})[5].span.string
#Format month for timestamp
if len(str(m)) < 2:
mStamp = '0' + str(m)
else:
mStamp = str(m)
#Format day for timestamp
if len(str(d)) < 2:
dStamp = '0' + str(d)
else:
dStamp = str(d)
#Build timestamp
timestamp = str(year)+ mStamp + dStamp
#Wrtie timestamp and temp to file
f.write(timestamp + ',' + dayTemp +'\n')
#done - close
f.close()