私はこのテーブルのデータをjsonに変換するためにBeautifulsoupを使用しています。 しかし、どのようにしてタグ間でデータを取得できますか?Beautifilsoupを使用してテーブルから行データを取得
<table>
<tr>
<th>Montag</th>
<td>
09:00 – 00:30
</td>
</tr>
<tr>
<th>Dienstag</th>
<td>
geschlossen
</td>
</tr>
<tr>
<th>Mittwoch</th>
<td>
12:00 – 00:30
</td>
</tr>
<tr>
<th>Donnerstag – Sonntag</th>
<td>
09:00 – 00:30
</td>
</tr>
</table>
は残念ながら、これが動作していません。ここで
datesTable = BeautifulSoup(mytable)
for row in datesTable:
print(row['th'])
注:古くてメンテナンスされていない「BeautifulSoup」バージョン3を使用しています。 – alecxe
ありがとう、私は私の答えを更新しました。 – Alden