Codebase list python-googlesearch / 93e15571-9b8d-403e-9f79-e8c94067aab2/main
93e15571-9b8d-403e-9f79-e8c94067aab2/main

Tree @93e15571-9b8d-403e-9f79-e8c94067aab2/main (Download .tar.gz)

googlesearch

Google search from Python.

https://python-googlesearch.readthedocs.io/en/latest/

Usage example

# Get the first 20 hits for: "Breaking Code" WordPress blog
from googlesearch import search
for url in search('"Breaking Code" WordPress blog', stop=20):
    print(url)

Installing

pip install google