0

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?

coder
  • 183
  • 9

1 Answers1

1

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).

Salem
  • 12,808
  • 4
  • 34
  • 54
  • Also can you tell me how print the Screen names of user ? I am trying to do this by print but it is giving error – coder Sep 10 '13 at 16:59