Rechercher dans Google avec Python
# pip install beautifulsoup4
# pip install google
from googlesearch import search
query = "what is a computer"
for result in search(query, num=20, stop=10):
print(result)
Elegant Elephant