Forked from intentionally-left-nil/deloldtweets.py
Last active
March 21, 2021 13:06
-
-
Save n-eq/d6bd3438cd87ab419888edbc4dc1f0f5 to your computer and use it in GitHub Desktop.
Delete old tweets based on twitter archive
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python3 | |
# Fork of https://gist.github.com/davej/113241 | |
# Requirements: | |
# - twitter API credentials (replace the correponding variables) | |
# - tweet.js file you get by extracting your twitter archive zip file (located in data/) | |
# License : Unlicense http://unlicense.org/ | |
import tweepy | |
import | |
import json | |
from datetime import datetime, timedelta | |
from dateutil import parser | |
consumer_key = '' | |
consumer_secret = '' | |
access_token = '' | |
access_token_secret = '' | |
days_to_keep = 365 | |
auth = tweepy.OAuthHandler(consumer_key, consumer_secret) | |
auth.set_access_token(access_token, access_token_secret) | |
api = tweepy.API(auth) | |
utc = pytz.UTC | |
cutoff_date = utc.localize(datetime.now() - timedelta(days=days_to_keep)) | |
fp = open("tweet.js","r") | |
fp.seek(25) # skip to '[' which is the beginning of the json part | |
myjson = json.load(fp) | |
for i in range(len(myjson)): | |
parsed_date = parser.parse(myjson[i]['tweet']['created_at']) | |
# print(parsed_date) | |
if parsed_date < cutoff_date: | |
# beware, this operation is irreversible | |
try: | |
# print("Destroying tweet %s" % myjson[i]['tweet']['id_str']) | |
api.destroy_status(myjson[i]['tweet']['id_str']) | |
except Exception as e: | |
print("There was an exception: %s." % e) | |
pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Okay, it might be tricky as I don't have a Windows machine on hand.
Basically you're all set once you have defined the parameters in lines 15-19 and put the tweet.js file in the same directory.
Can you try running
execfile('deloldtweets.py')
from the IDLE shell?