1

I'm using the python-twitter library and while I can get the code to retrieve a 'set' of results, apparently in the first 'page' ... I for the life of me can't find the right code to get a set of ALL the followers for a specific account/handle.

I'm using this snip...

target = sys.argv[1]

#returns a twitter.User instance for each follower
users = api.GetFollowers(target) 
print [u.screen_name for u in users]

I'd appreciate any pointers, if someone's figured this out already?

Thanks in advance. /Raf

Tasos
  • 7,325
  • 18
  • 83
  • 176
user1944655
  • 13
  • 1
  • 3

1 Answers1

1

According to this patch, I guess it has been fixed. Check this sample code.

Babu
  • 2,548
  • 3
  • 30
  • 47