from bs4 import BeautifulSoup import urllib.request # webからhtmlを取得する場合 url = '××××××××××××' req = urllib.request.Request(url) response = urllib.request.urlopen(req) html = response.read() soup = BeautifulSoup(html, "lxml") # ローカルのhtmlを直接開くとき soup = BeautifulSoup(open("index.html"), "lxml") - classを指定 soup.find(class_='class_name') # classの後にアンダーバーがないとエラーがでる。 - idを指定 soup.find(id="id_name") # idはその