search_test.py 170 B

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