• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

google.egg-info/H03-May-2022-1918

googlesearch/H03-May-2022-377234

scripts/H11-Jul-2020-11971

MANIFEST.inH A D11-Jul-2020143 76

PKG-INFOH A D11-Jul-2020607 1918

README.mdH A D11-Jul-2020371 2013

setup.cfgH A D11-Jul-202067 85

setup.pyH A D11-Jul-20202.8 KiB7232

README.md

1googlesearch
2============
3
4Google search from Python.
5
6https://python-googlesearch.readthedocs.io/en/latest/
7
8Usage example
9-------------
10
11    # Get the first 20 hits for: "Breaking Code" WordPress blog
12    from googlesearch import search
13    for url in search('"Breaking Code" WordPress blog', stop=20):
14        print(url)
15
16Installing
17----------
18
19    pip install google
20