Last active
February 20, 2019 15:31
-
-
Save wxbaum/a76a512e9060fffc977e83ccaec8c342 to your computer and use it in GitHub Desktop.
Revisions
-
wxbaum revised this gist
Feb 20, 2019 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ from googlesearch import search list_urls = [] for url in search("site:twitter.com lists " + keyword_string): if '/lists/' in url: list_urls.append(url) -
wxbaum revised this gist
Feb 20, 2019 . 2 changed files with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +0,0 @@ This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ from googlesearch import search for url in search("site:twitter.com lists " + keyword_string): # do stuff -
wxbaum created this gist
Feb 20, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,3 @@ from googlesearch import search for url in search("site:twitter.com lists " + list_contains_string): # do stuff