Skip to content

Instantly share code, notes, and snippets.

@bongbongco
Created October 7, 2016 04:13
Show Gist options
  • Save bongbongco/4c193fcc168b8ad3a394f4eaec35b341 to your computer and use it in GitHub Desktop.
Save bongbongco/4c193fcc168b8ad3a394f4eaec35b341 to your computer and use it in GitHub Desktop.
# Get the first 20 hits for: "Breaking Code" WordPress blog
from google import search
for url in search('"Breaking Code" WordPress blog', stop=20):
print(url)
# Get the first 20 hits for "Mariposa botnet" in Google Spain
for url in search('Mariposa botnet', tld='es', lang='es', stop=20):
print(url)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment