1

I'm trying to retrieve values from pyGoogleNews (https://github.com/kotartemiy/pygooglenews) that is using feedParser to output the values.

Lib Info

Code Snippet as follows:

from pygooglenews import GoogleNews

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

which returns the following: (does not seem like a valid JSON file)

enter image description here

What I'm trying to achieve is to loop the "entries" list, to get the relevant title and link.

How do I go about doing this?

Gene
  • 2,178
  • 3
  • 30
  • 50

1 Answers1

1

The solution as follows:

for item in cars['entries']:
    print(item['title'])
    print(item['link'])
Gene
  • 2,178
  • 3
  • 30
  • 50