-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.py
41 lines (37 loc) · 1.04 KB
/
run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import praw
from time import sleep
client_id = 'XXXX'
client_secret = 'XXXX'
reddit_user = 'XXXX'
reddit_pass = 'XXXX'
user_agent = 'Downvoted comment editor (by /u/impshum)'
test_mode = 1
loop = 1
limit = 100
downvotes = 0
sleep_timer = 86400
verbose = 1
edits = "**/s**"
reddit = praw.Reddit(client_id=client_id,
client_secret=client_secret,
user_agent=user_agent,
username=reddit_user,
password=reddit_pass)
x = 1
c = 0
while x:
for comment in reddit.redditor(reddit_user).comments.new(limit=limit):
if not comment.saved and comment.downs > 0:
if verbose:
print('{}: https://reddit.com{}'.format(comment.downs, comment.permalink))
if not test_mode:
new = '{} {}'.format(comment.body, edits)
comment.edit(new)
comment.save()
c += 1
print(f'Edited {c} comments')
if not loop:
x = 0
else:
print('Sleeping')
sleep(sleep_timer)