from bs4 import BeautifulSoup import urllib3 url="http://www.nikkei.com/" http = urllib3.PoolManager() r = http.request('GET', url) soup = BeautifulSoup(r.data, 'html.parser') title_tag = soup.title title = title_tag.string print(title_tag) print(title)
webでurllib2とurl.requestが必要となっているのは、古い情報。
参考ホームページ: Python3系で Webスクレイピング 入門
0 件のコメント:
コメントを投稿