Skip to content

Instantly share code, notes, and snippets.

@wxbaum
Last active February 20, 2019 15:31
Show Gist options
  • Select an option

  • Save wxbaum/a76a512e9060fffc977e83ccaec8c342 to your computer and use it in GitHub Desktop.

Select an option

Save wxbaum/a76a512e9060fffc977e83ccaec8c342 to your computer and use it in GitHub Desktop.
googlesearch example
from googlesearch import search
list_urls = []
for url in search("site:twitter.com lists " + keyword_string):
if '/lists/' in url:
list_urls.append(url)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment