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 characters
for id in screen_names_unique[42:44]: | |
screen_name = id | |
print '\n', screen_name | |
cursor = "-1" | |
print 'followers list first cursor', cursor | |
d = get_followers_ids (screen_name, cursor) | |
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 characters
#!/usr/bin/env python | |
""" | |
Use Twitter API to grab user information from list of organizations; | |
export text file | |
Uses Twython module to access Twitter API | |
""" |
NewerOlder