I am new to python and Twython and I want to fetch a list of all followers of a user and hence I am using this code
twitter = Twython(APP_KEY, APP_SECRET, OAUTH_TOKEN, OAUTH_TOKEN_SECRET)
followers = twitter.get_followers_list(screen_name = "abcd")
for theList in followers:
id = theList[ 0 ]
print id
But I am getting errors. This may be due to the last 3 line.