coder
coder

Reputation: 183

Not able find Twython.getFollowersIDs functions

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

Answers (1)

Salem
Salem

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

Related Questions