Tweepy: How can I look up more than 100 user screen names
问题 You can only retrieve 100 user objects per request with the api.lookup_users() method. Is there an easy way to retrieve more than 100 using Tweepy and Python? I have read this post: User ID to Username tweepy but it does not help with the more than 100 problem. I am pretty novice in Python so I cannot come up with a solution myself. What I have tried is this: users = [] i = 0 num_pages = 2 while i < num_pages: try: # Look up a collection of ids users.append(api.lookup_users(user_ids=ids[100*i