Pythonではほとんどスクレイピングばかりしてる。最近スクレイピングしていてはまったこと。
ID名とCLASS名が同じでうまくスクレイピングできないものがあったのでメモ。
[code lang=”python”]for day in soup.select(“span[id^=thisMonth], span.thisMonth”):[/code]
Pythonではほとんどスクレイピングばかりしてる。最近スクレイピングしていてはまったこと。
ID名とCLASS名が同じでうまくスクレイピングできないものがあったのでメモ。
[code lang=”python”]for day in soup.select(“span[id^=thisMonth], span.thisMonth”):[/code]