Comment obtenir tous les liens d'une recherche Google à l'aide de Python

from googlesearch import search   

# to search 
query = "see"

links = []
for j in search(query, tld="co.in", num=10, stop=10, pause=2): 
    links.append(j) 
Grieving Gharial