-1
私はPythonを使い始めました。テーブルを掻き取ろうとしています... http://www.dramexchange.com/TableIn Pythonをスクラップする方法
まだ成功していません。
import requests, bs4
r = requests.get('http://www.dramexchange.com/')
soup = bs4.BeautifulSoup(r.text, 'lxml')
for table in contents.find_all(class_='tb_NationalDramSpotPrice'):
title = table.find(class_='title').text
for tr in table.find_all('tr'):
_, Item, Daily High, Daily Low. Session High. Session Low. Session Average, Session Change = [td for td in tr.stripped_strings]
print(Item, Daily High, Daily Low. Session High. Session Low. Session Average, Session Change)
ヘルプがありますか?
あなたの問題は何ですか? –