import tweepy auth = tweepy.OAuthHandler("CONSUMER_KEY", "CONSUMER_SECRET") auth.set_access_token("ACCESS_TOKEN","ACCESS_TOKEN_SECRET") api = tweepy.API(auth) list_id = 1476313231572578313 # your list id for user in tweepy.Cursor(api.list_members, list_id=list_id).items(): # hack 'm all print(user.id_str) print(user.name) print(user.screen_name) print(user.description) print(user.url)