运行脚本时有时会出现错误:
Traceback (most recent call last):
File "C:\Users\dzwon\Desktop\osu_pp_watch_v15_FINAL.py", line 27, in <module>
data=(requests.get('https://osu.ppy.sh/api/get_user?k=' + APIkey + '&u=' + username)).json()
File "C:\Users\dzwon\AppData\Local\Programs\Python\Python36\lib\site-packages\requests\models.py", line 894, in json
return complexjson.loads(self.text, **kwargs)
File "C:\Users\dzwon\AppData\Local\Programs\Python\Python36\lib\json\__init__.py", line 354, in loads
return _default_decoder.decode(s)
File "C:\Users\dzwon\AppData\Local\Programs\Python\Python36\lib\json\decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "C:\Users\dzwon\AppData\Local\Programs\Python\Python36\lib\json\decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
错误可以在15或2分钟后弹出,或者根本不会弹出
解析JSON的脚本部分
data=(requests.get('https://osu.ppy.sh/api/get_user?k=' + APIkey + '&u=' + username)).json()
pp = data[0]['pp_raw']
rank = data[0]['pp_rank']
和JSON数据
[{"user_id":"5390233","username":"dzwon21","count300":"439843","count100":"39207","count50":"5245","playcount":"3860","ranked_score":"753280488","total_score":"1708595594","pp_rank":"223986","level":"63.7695","pp_raw":"842.426","accuracy":"97.04467010498047","count_rank_ss":"53","count_rank_s":"235","count_rank_a":"264","country":"PL","pp_country_rank":"10947","events":[{"display_html":"<b><a href='\/u\/5390233'>dzwon21<\/a><\/b> unlocked the \"<b>Insanity Approaches<\/b>\" medal!","beatmap_id":"0","beatmapset_id":"0","date":"2017-07-12 17:43:17","epicfactor":"4"}]}]
答案 0 :(得分:2)
您的HTTP请求失败。在获取JSON数据之前,您应该检查HTTP请求的成功或失败:
#UNTESTED
result=requests.get('https://osu.ppy.sh/api/get_user?k=' + APIkey + '&u=' + username)
if result.ok and result.headers['content-type'] == 'application/json':
data = result.json()
else:
raise SomeError("HTTP did not return data.")
pp = data[0]['pp_raw']
rank = data[0]['pp_rank']