Pythonを使用して、スクレイピングを実行しましたが、下記のようなエラーが出ました。
調べたところ、ヘッダーのUser-Agentというのが必要ということが分かったのですが、
その情報を入力してもスクレイピングをすることができません。
error
1You don\'t have permission to access this resource.
実行したコードは下記です。
どなたかご教示いただけませんでしょうか?
Python
1from bs4 import BeautifulSoup 2import requests 3import openpyxl 4year = 2019 5code = 6577 6url = "https://kabuoji3.com/stock/"+str(code)+"/"+str(year)+"/" 7headers = { 8 "User-Agent":"自分のユーザーエージェント情報" 9} 10soup = BeautifulSoup(requests.get(url,headers = headers).content,'html.parser') 11print(requests.get(url).content)
回答2件
あなたの回答
tips
プレビュー