直到今天每天我都在运行该文件。基于错误,我认为相关代码如下:
LastFM_artistMBID = MusicBrainz_artistMBID
get_artist_info_from_LastFM = lastFM.makeGetArtistInfoFromLastFM_URL(LastFM_artistMBID)
artist_info_from_LastFM = requests.get(get_artist_info_from_LastFM)
artistData = json.loads(artist_info_from_LastFM.text)
最后一行是底部的错误似乎令人讨厌的地方。
上面第一行中的MusicBrainz_artistMBID变量是下面mbid_array2列表中的一项。上面的所有代码都是下面的get_artists_data函数的一部分。如果您需要更多代码,我可以编辑此答案。
for mbid in artistsData.mbid_array2:
get_artists_data(mbid)
错误(包括调试时来自打印命令的第一行):
<Response [200]>
Traceback (most recent call last):
File "getArtistDataCron.py", line 216, in <module>
get_artists_data(mbid)
File "getArtistDataCron.py", line 54, in get_artists_data
artistData = json.loads(artist_info_from_LastFM.text)
File "/home/bombybomb/anaconda3/lib/python3.6/json/__init__.py", line 354, in loads
return _default_decoder.decode(s)
File "/home/bombybomb/anaconda3/lib/python3.6/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/home/bombybomb/anaconda3/lib/python3.6/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)
我尝试了从谷歌搜索中找到的几种解决方案和建议,但似乎没有任何解决方法。直到今天,该文件每次都运行良好。
最佳答案
Expecting value: line 1 column 1 (char 0)
表示给定值完全为空。由于服务器端出现问题,服务器很可能没有任何响应。如果您无权解决服务器问题,则只需等待服务器问题解决。
关于python - 一直可以正常工作的Python文件突然得到json.decoder.JSONDecodeError:期望值:第1行第1列(字符0),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54891865/