I'm trying to extract followers ids from a user who has more than 5000 followers. I'm just testing so i'm doing it in the interpreter for now. I'm doing it this way.
auth = tweepy.OAuthHandler(consumer_key, consumer_secret)
auth.set_access_token(access_token, access_token_secret)
api = tweepy.API(auth)
ids = api.followers_ids(user_id='userfoo',cursor='-1')
print ids
It gets the first cursor fine but where is the next_cursor return value stored? Its not in my ids variable like it is should be because it has been parsed. What do I need to call to Print the next_cursor value?
Example
>>>print next_cursor
Is it possible? Iv'e looked everywhere but can't seem to find much documentation on this.