Reputation: 183
I am using Twython on Ubuntu 12.04 an when I write this line
twitter.getFollowersIDs(screen_name='someName')
I am getting this error
AttributeError: 'Twython' object has no attribute 'getFollowersIDs'
what should I do?
Upvotes: 0
Views: 117
Reputation: 12986
I think the correct method name is:
twitter.get_followers_ids(screen_name='someName')
If this is not the case please provide the output of dir(twitter)
.
Upvotes: 1