正在从 Pygooglenews feedParser 检索 JSON 标题,URL

Retrieving JSON Title, URL from Pygooglenews feedParser

我正在尝试从 pyGoogleNews 中检索值 (https://github.com/kotartemiy/pygooglenews) 即使用 feedParser 输出值。

代码片段如下:

from pygooglenews import GoogleNews

gn = GoogleNews(lang = 'en', country = 'SG')
cars = gn.topic_headlines('CAAqJAgKIh5DQkFTRUFvSEwyMHZNR3MwYWhJRlpXNHRSMElvQUFQAQ')
print(cars)

其中 returns 以下内容:(似乎不是有效的 JSON 文件)

我想要实现的是循环“条目”列表,以获取相关标题和 link。

我该怎么做?

解决方法如下:

for item in cars['entries']:
    print(item['title'])
    print(item['link'])