I use exactly the same code in this answer, but it didn't work out.
from googleapiclient.discovery import build
import pprint
my_api_key = "Google API key"
my_cse_id = "Custom Search Engine ID"
def google_search(search_term, api_key, cse_id, **kwargs):
service = build("customsearch", "v1", developerKey=api_key)
res = service.cse().list(q=search_term, cx=cse_id, **kwargs).execute()
return res['items']
results = google_search(
'stackoverflow site:en.wikipedia.org', my_api_key, my_cse_id, num=10)
for result in results:
pprint.pprint(result)
The result shows KeyError: 'items'
Then I tried to remove the key and see what the result is.
It seems like there aren't any keys named "items"
So the question is:
How can I tweak the code and get a list of links ranked in the top 20 google search results?
Thanks in advance.
Sandra