http://mhometheater.com/このサイトの週間人気記事ランキングのaタグの取得方法がわかりません。
py
1import requests 2from bs4 import BeautifulSoup 3from bs4 import SoupStrainer 4 5url = requests.get("http://mhometheater.com/") 6 7only_a_tags = SoupStrainer("a") 8 9only_tags_with_id_link2 = SoupStrainer(id="link2") 10 11def is_short_string(string): 12 return len(string) < 10 13 14only_short_strings = SoupStrainer(text=is_short_string) 15 16print(BeautifulSoup(url.text, "html.parser", parse_only=only_a_tags).prettify())
すべてのaタグを抽出しても出てきません。
あなたの回答
tips
プレビュー