Skip to content

Instantly share code, notes, and snippets.

# Python
from twython import Twython
usuario = "ajamaica"
twitter = Twython()
followers = twitter.getFollowersIDs( screen_name = usuario )
for follower_id in followers :
print "Usuario %d sigue a %s" % (follower_id,usuario)