我首先发布了带有完整回溯的错误消息以及代码。
下面的代码位于一个循环中,该循环将多次运行,以更改API数据调用的session.get()链接中的变量。
我会不时收到json.decoder.JSONDecodeError期望值的错误...(下面的完整错误)
我无法弄清楚原因。
Traceback (most recent call last):
File "C:\Users\CarlosMiguel\Desktop\experiments\data_collector\data_collector.py", line 100, in <module>
get_data = session.get(api_data_link+symbol+"?limit=1000&period="+i).json()
File "C:\Users\CarlosMiguel\Anaconda3\lib\site-packages\requests\models.py", line 892, in json
return complexjson.loads(self.text, **kwargs)
File "C:\Users\CarlosMiguel\Anaconda3\lib\json\__init__.py", line 354, in loads
return _default_decoder.decode(s)
File "C:\Users\CarlosMiguel\Anaconda3\lib\json\decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "C:\Users\CarlosMiguel\Anaconda3\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)
目前它是这样编写的(需要导入的所有内容):
try:
get_data = session.get(api_data_link+symbol+"?limit=1000&period="+i).json()
for candle in get_data:
#Do things with the requested data....
except:
print("JSONError")
print('Could not update data for')
print(symbol + ' ' + i)
API是否只是在一些随机调用中没有返回任何内容?
因为它在崩溃时似乎是完全随机的。
如果它可能是API只是没有返回任何东西,我怎么能写它再次调用它几次,然后继续使用应用程序的其余部分?