search in google with python

46

search in google with 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)

python google search results -

pip install google-search-results

Comments

Submit
0 Comments