Library

Python

from bs4 import BeautifulSoup

より インストール $ pip install beautifulsoup4 使い方 BeautifulSoupオブジェクトの作成 平文のHTMLを扱う場合 from bs4 import BeautifulSoup html = """ ...
Python

import requests

Ref import requests r = requests.get("") print(r.text) HTTP ライブラリrequests.get('URL')で GET リクエストができるレスポンスに対して.textとすることで,...