解决访问频次过高问题
在调用的主循环中增加以下语句即可:
if i>0 and i % 100 == 0:
#由于每分钟调用限制,每调用100次,判断用了多长时间,等待(65-用去的时间)秒
timeused=time.perf_counter ()-nowcount
print(timeused)
if(timeused<=60):
time.sleep(65-timeused)
nowcount=time.perf_counter ()
赞 (0)
在调用的主循环中增加以下语句即可:
if i>0 and i % 100 == 0:
#由于每分钟调用限制,每调用100次,判断用了多长时间,等待(65-用去的时间)秒
timeused=time.perf_counter ()-nowcount
print(timeused)
if(timeused<=60):
time.sleep(65-timeused)
nowcount=time.perf_counter ()