Library

Python

from bs4 import BeautifulSoup

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

import requests

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