前提・実現したいこと
某音楽ゲームのスコアデータをスクレイピングしたいのですが、後述するようなエラーが出てしまいます。
発生している問題・エラーメッセージ
Traceback (most recent call last): File "bpi_satellite.py", line 55, in <module> data = r.json() File "/home/k0gane/anaconda3/lib/python3.7/site-packages/requests/models.py", line 897, in json return complexjson.loads(self.text, **kwargs) File "/home/k0gane/anaconda3/lib/python3.7/json/__init__.py", line 348, in loads return _default_decoder.decode(s) File "/home/k0gane/anaconda3/lib/python3.7/json/decoder.py", line 337, in decode obj, end = self.raw_decode(s, idx=_w(s, 0).end()) File "/home/k0gane/anaconda3/lib/python3.7/json/decoder.py", line 355, in raw_decode raise JSONDecodeError("Expecting value", s, err.value) from None json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
該当のソースコード
python
1url = "https://stellabms.xyz/api/user/133436" 2r = requests.get(url) 3soup = BeautifulSoup(r.content, "lxml") 4title_part = soup.find_all("script", {"type": "application/json"}) 5print(title_part)
ちなみにChromeの検証でurlを叩いたところ、
Request URL: https://stellabms.xyz/api/user/133436 Request Method: POST Status Code: 200 OK Remote Address: 198.13.52.243:443 Referrer Policy: no-referrer-when-downgrade (中略) Content-Type: application/json; charset=utf-8(Response Header)
また、Responseを見てもjsonデータ形式になっているので元データが違うということはなさそうです。
試したこと
補足情報(FW/ツールのバージョンなど)
python 3.7.3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。