A small python script that allows you to delete your old tweets.
Use pip:
pip install twitter_cleaner
- Apply for a Twitter Developer Account.
- While you wait for Twitter to review and approve your Developer Account, download your Twitter archive. Twitter limits the access of the tweets by the API, so the only way to retrieve your old tweets is using the Twitter archive.
- When you receive your archive, you should look for a JS file with contains all your tweets (tweet.js).
- After the approval of your Twitter Developer Account, create an app. Don't forget: you should set Read and Write in the Access Permissions settings.
- Open the details page of the app that you created. Go for the Keys and Tokens tab. You will need the consumer and access token keys to use Twitter Cleaner.
- Run:
python -m twitter_cleaner --consumer_key <consumer-key> \\
--consumer_secret <consumer-secret> \\
--access_token_key <access-token-key> \\
--access_token_secret <access-token-secret> \\
--older_than <date in YYYY-MM-DD format> \\
--file <path/to/tweet.js>
There are two filters available: filter tweets older than a date AND filter tweets newer than a date. If you need more filtering options, like filter tweets with less (or more) than a specific amount of engagement, please ask.