-
-
Save davej/113241 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*- | |
""" | |
This script will delete all of the tweets in the specified account. | |
You may need to hit the "more" button on the bottom of your twitter profile | |
page every now and then as the script runs, this is due to a bug in twitter. | |
You will need to get a consumer key and consumer secret token to use this | |
script, you can do so by registering a twitter application at https://dev.twitter.com/apps | |
@requirements: Python 2.5+, Tweepy (http://pypi.python.org/pypi/tweepy/1.7.1) | |
@author: Dave Jeffery | |
""" | |
import tweepy | |
CONSUMER_KEY = 'XXX' | |
CONSUMER_SECRET = 'XXX' | |
def oauth_login(consumer_key, consumer_secret): | |
"""Authenticate with twitter using OAuth""" | |
auth = tweepy.OAuthHandler(consumer_key, consumer_secret) | |
auth_url = auth.get_authorization_url() | |
verify_code = raw_input("Authenticate at %s and then enter you verification code here > " % auth_url) | |
auth.get_access_token(verify_code) | |
return tweepy.API(auth) | |
def batch_delete(api): | |
print "You are about to Delete all tweets from the account @%s." % api.verify_credentials().screen_name | |
print "Does this sound ok? There is no undo! Type yes to carry out this action." | |
do_delete = raw_input("> ") | |
if do_delete.lower() == 'yes': | |
for status in tweepy.Cursor(api.user_timeline).items(): | |
try: | |
api.destroy_status(status.id) | |
print "Deleted:", status.id | |
except: | |
print "Failed to delete:", status.id | |
if __name__ == "__main__": | |
api = oauth_login(CONSUMER_KEY, CONSUMER_SECRET) | |
print "Authenticated as: %s" % api.me().screen_name | |
batch_delete(api) |
i wrote this up:
https://github.com/murdoc02/twitterwipe
hey murdoc02 can u help me how can i delete all my tweets? i have 40k tweets.
i wrote this up:
https://github.com/murdoc02/twitterwipe
hey dude can u help me how can i delete all my tweets? i dont know how can i make a app from twitter.
i wrote this up:
https://github.com/murdoc02/twitterwipehey dude can u help me how can i delete all my tweets? i dont know how can i make a app from twitter.
set the number of days to 0 in my repo. after you got your auth set up just run it and you'll be good (not for likes though, but see my readme for that).
i wrote this up:
https://github.com/murdoc02/twitterwipehey dude can u help me how can i delete all my tweets? i dont know how can i make a app from twitter.
set the number of days to 0 in my repo. after you got your auth set up just run it and you'll be good (not for likes though, but see my readme for that).
Hi!, I want to delete all my tweets. I do all instructions on your repo and get my auth to set up. But, after running it, my tweets it's still the same / not deleted.
Are there any specific settings when creating the API? Such as Permissions? cause, I only see permission to read and write, not to delete tweets.
Updated version to use with Python 3 https://gist.github.com/iharmanpannu/372788f40d9e7f12bd4baea195a14095
Updated version to use with Python 3 https://gist.github.com/iharmanpannu/372788f40d9e7f12bd4baea195a14095
The link isn't working.
Updated version to use with Python 3 https://gist.github.com/iharmanpannu/372788f40d9e7f12bd4baea195a14095
The link isn't working.
just copy paste it
Updated version to use with Python 3 https://gist.github.com/iharmanpannu/372788f40d9e7f12bd4baea195a14095
A very simple NodeJS script to wipe all your tweets including step-by-step directions for obtaining all necessary tokens/keys:
https://github.com/wayne530/twitter-wipe
still working ? i need to do this on my tiwtter archive
Use this free plugin, it will automatically erase them.
Twitter or X: Delete all tweets free – Get this Extension for 🦊 Firefox (en-US)
That extension has been removed.
@ghost that is a 404 link. But I found https://gitlab.com/chaimtime/nuketweets .