Codebase list python-googlesearch / f4729896-6c7b-4d24-9f62-26f3acaa126c/main
f4729896-6c7b-4d24-9f62-26f3acaa126c/main

Tree @f4729896-6c7b-4d24-9f62-26f3acaa126c/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