What’s up guys, here I present you a way of scraping all of a user’s tweets into a CSV, you can use it into an AI or whatever you want. It’s your choice.

First, you will need to install the tweepy library of Python3

Then you need to get your API credentials by making an app on Twitter

#Twitter API credentials 
consumer_key = "" 
consumer_secret = "" 
access_key = "" 
access_secret = ""

Here is the full source: