我正在通过《纽约时报》的API运行两个不同的脚本,第一个带有“ begin_date”标签,第二个没有。由于某种原因,我收到了一个带有begin_date标签的keyError“响应”,但是没有该脚本,则没有错误
from nytimesarticle import articleAPI
import time
api = articleAPI("hidden")
file = open("Marvel.txt", "w")
for x in range(200):
time.sleep(6.5)
print(x)
articles = api.search(q="Marvel", begin_date="20101231", page=x)
parsedArticles=articles['response']['docs']
for i in parsedArticles:
file.write(i['web_url'] + "\n" + "\n")
多余的标签会更改任何内容吗?