I want to dump all tweets of a user. The script works fine except that for users with many tweets I do not receive all. (Only 3220) How can I fetch the whole timeline?
Python code using tweepy libary: (count is the amount of statuses posted)
cursor = tweepy.Cursor(api.user_timeline, args.user).items(count)