Delete all the unimportant tweets that you don't like
Clone the repo and install the required dependencies:
git clone https://github.com/chrischriscris/pyTweetDelete.git
cd pyTweetDelete
python -m venv venv # optional
source venv/bin/activate # optional
python -m pip install -r requirements.txtCreate a Twitter app and get the API keys from here. Add the keys in a .env file in the root directory of the project:
API_KEY=...
API_SECRET=...
ACCESS_TOKEN=...
ACCESS_TOKEN_SECRET=...Run the script:
python pyTweetDelete.pyThis will delete all the tweets of your user. You can also delete the tweets with more than a certain number of likes or retweets. To get more information about the options, run:
python pyTweetDelete.py --helpThis project is licensed under the GNU General Public License v3.0 - see the LICENSE file for details.