実現したいこと
こちらのページから、HTMLを取得する
試したこと
Python
1import requests 2from bs4 import BeautifulSoup 3 4html_doc = requests.get("http://virtual-youtuber.userlocal.jp/document/ranking").text 5soup = BeautifulSoup(html_doc, 'html.parser') #Beautiful soupの初期化 6print(soup.prettify())
を実行したのですが
python
1<html> 2 <head> 3 <title> 4 403 Forbidden 5 </title> 6 </head> 7 <body bgcolor="white"> 8 <center> 9 <h1> 10 403 Forbidden 11 </h1> 12 </center> 13 <hr/> 14 <center> 15 nginx 16 </center> 17 </body> 18</html>
このような感じで、うまくいきません。
解決策、アドバイスよろしくお願いいたします。
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/13 03:53
2019/11/23 07:35
2019/11/23 07:38
2019/11/24 05:24