「Webサイトの情報を自動で集めたい!」 そう思ってスクレイピングを始めたものの、requests で取得した HTMLの壁(大量のタグの羅列) を前に絶望したことはありませんか? 正規表現で <p>.*?</p> のようなパターンを書いて抽出するのは、もうやめましょう。
Sometimes it is necessary to gather large quantities of information from a website so it can be used for various purposes. This is called web scraping and can be achieved in several ways. One ...