mirror of https://github.com/x89/Shreddit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
#!/usr/bin/env python2
|
|
|
|
import reddit
|
|
import ConfigParser
|
|
from datetime import datetime, timedelta
|
|
|
|
config = ConfigParser.RawConfigParser()
|
|
config.read('shreddit.cfg')
|
|
|
|
days = config.getint('main', 'days')
|
|
whitelist = config.get('main', 'whitelist')
|
|
sort = config.get('main', 'sort')
|
|
verbose = config.getboolean('main', 'verbose')
|
|
|
|
r = reddit.Reddit(user_agent="Shreddit-PRAW")
|
|
# add user: <YourUsername> / pswd: <YourPassword> to the [reddit] config section
|
|
r.login()
|
|
|
|
if verbose:
|
|
print "Logged in as %s" % r.user
|
|
|
|
before_time = datetime.now() - timedelta(days=days)
|
|
|
|
if verbose:
|
|
print "Deleting messages before %s" % before_time
|
|
|
|
whitelist = [y.strip().lower() for y in whitelist.split(',')]
|
|
|
|
if verbose:
|
|
print "Keeping messages from subreddits %s" % ', '.join(whitelist)
|
|
|
|
for comment in r.user.get_comments(limit=None, sort=sort):
|
|
if str(comment.subreddit).lower() in whitelist:
|
|
next
|
|
now_time = datetime.fromtimestamp(comment.created)
|
|
if now_time < before_time:
|
|
if verbose:
|
|
print 'Deleting: [%s]: "%s"' % (comment.subreddit, comment.body[:20])
|
|
comment.delete()
|