Skip to content
This repository was archived by the owner on Apr 28, 2023. It is now read-only.

Commit 7a4f9e7

Browse files
author
PokestarFan
committed
Major changes
1 parent 1330c49 commit 7a4f9e7

9 files changed

+135
-132
lines changed

.gitignore

+2-5
Original file line numberDiff line numberDiff line change
@@ -101,17 +101,14 @@ ENV/
101101
.mypy_cache/
102102

103103
#my login
104-
login.py
105-
Utlities/login.py
104+
*login.py
106105

107106
#pycharm
108107
.idea/
109108

110109
#files used by program
111110
blockusers.txt
112-
posts_written_to.txt
113-
writes.txt
114-
replies.txt
115111

116112
#logs
117113
*.log
114+
logs/

delete.py

+14-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
import praw
2-
from login import reddit
2+
from modules.logger import setup_logger
3+
from modules.login import reddit
4+
import logging
35

6+
logger = setup_logger('user_removed_comments')
47

5-
def main(limit, count=0):
6-
for comment in r.redditor(str(user)).comments.new(limit=limit):
7-
comment.delete()
8-
count = count + 1
9-
print('Finished comment #'+str(count))
10-
11-
if __name__ == '__main__':
12-
limit = input('How many recent comments to delete? Type None for all comments')
13-
count = 0
14-
main(limit, count)
15-
print('Complete')
8+
for item in reddit.inbox.stream():
9+
logger.debug('On item {}'.format(str(item)))
10+
try:
11+
if item.body.lower() == 'delete':
12+
item.parent.delete()
13+
logging.info('Comment {} removed'.format(str(item.parent)))
14+
item.reply('The top level post has been removed.')
15+
except:
16+
logging.debug('Item {} skipped'.format(str(item)))
17+
pass

deleteallcomments.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import praw
2+
from modules.logger import setup_logger
3+
from modules.login import reddit
4+
import logging
5+
6+
logger = setup_logger('remallcomments')
7+
8+
9+
def main(count=0):
10+
for comment in r.redditor(str(r.user.me())).comments.new(limit=None):
11+
comment.delete()
12+
logging.info('Finished comment #'+str(count)+', id {}'.format(str(comment)))
13+
14+
if __name__ == '__main__':
15+
while True:
16+
try:
17+
main()
18+
except:
19+
logging.error('Error!', exc_info=True)

duplicate.py

+54-57
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,67 @@
1-
from datetime import datetime
1+
from modules.logger import setup_logger
22
import logging
3+
from datetime import datetime
34
import praw
45
import prawcore
5-
import sys
6-
from login import reddit
7-
8-
9-
file_handler = logging.FileHandler(filename='duplicates_{}.log'.format(datetime.now().strftime('%m_%d_%y')))
10-
stdout_handler = logging.StreamHandler(sys.stdout)
11-
handlers = [file_handler, stdout_handler]
12-
13-
logging.basicConfig(
14-
level=logging.INFO,
15-
format='[%(asctime)s] {%(filename)s:%(lineno)d} %(levelname)s - %(message)s',
16-
handlers=handlers
17-
)
6+
from modules.login import reddit
187

19-
logger = logging.getLogger(__name__)
8+
logger = setup_logger('duplicates')
209

2110
def action():
2211
for sub_id in reddit.subreddit('all').stream.submissions():
23-
logging.debug('Starting submission {}'.format(sub_id))
24-
blockeduser = 0
25-
duplicates = []
26-
submission = praw.models.Submission(reddit, id = sub_id)
27-
with open('blockusers.txt','r') as newfile:
28-
for line in newfile.readlines():
29-
line = line.strip('\n')
30-
if str(submission.author) == line or 'bot' in str(submission.author).lower():
31-
blockeduser = 1
32-
logger.debug('User {}\'s submission {} was blocked from posting'.format(str(submission.author),str(sub_id)))
33-
else:
34-
pass
35-
if blockeduser == 0:
36-
for duplicate in submission.duplicates():
37-
dup_sub = praw.models.Submission(reddit, id = duplicate)
38-
if 'imagesof' not in str(dup_sub.subreddit).lower() and 'auto' not in str(dup_sub.subreddit).lower() and 'bot' not in str(dup_sub.author).lower():
39-
time = dup_sub.created
40-
time = str(datetime.fromtimestamp(time))
41-
author = str(dup_sub.author)
42-
if str(submission.author) == author:
43-
author = author + '[author of both threads]'
44-
duplicates.append({'title':str(dup_sub.title), 'subreddit':str(dup_sub.subreddit), 'link':'https://www.reddit.com'+str(dup_sub.permalink), 'time':str(time), 'author':author, 'karma': str(dup_sub.score)})
45-
if len(duplicates) > 0:
46-
message = 'Here is a list of threads in other subreddits about the same content:\n'
47-
for dup in duplicates:
48-
message = str(message + '\n * [{}]({}) on /r/{} with {} karma (created at {} by {})').format(dup['title'], dup['link'], dup['subreddit'], dup['karma'],dup['time'], dup['author'])
49-
message = message + '\n\n ---- \n\n ^^I ^^am ^^a ^^bot ^^[FAQ](https://www.reddit.com/r/DuplicatesBot/wiki/index)-[Code](https://github.com/PokestarFan/DuplicateBot)-[Bugs](https://www.reddit.com/r/DuplicatesBot/comments/6ypgmx/bugs_and_problems/)-[Suggestions](https://www.reddit.com/r/DuplicatesBot/comments/6ypg85/suggestion_for_duplicatesbot/)-[Block](https://www.reddit.com/r/DuplicatesBot/wiki/index#wiki_block_bot_from_tagging_on_your_posts)'
50-
try:
51-
submission.reply(message)
52-
logger.info('Message posted on {}'.format(sub_id))
53-
logger.debug('Message: {}'.format(message))
54-
message = ''
55-
except(praw.exceptions.APIException, UnboundLocalError)as e:
56-
logger.info('Submission {} has been skipped due to missing text'.format(sub_id))
12+
try:
13+
logging.debug('Starting submission {}'.format(sub_id))
14+
blockeduser = 0
15+
duplicates = []
16+
submission = praw.models.Submission(reddit, id = sub_id)
17+
with open('blockusers.txt','r') as newfile:
18+
for line in newfile.readlines():
19+
line = line.strip('\n')
20+
if str(submission.author) == line or 'bot' in str(submission.author).lower():
21+
blockeduser = 1
22+
logger.debug('User {}\'s submission {} was blocked from posting'.format(str(submission.author),str(sub_id)))
23+
else:
24+
pass
25+
if blockeduser == 0:
26+
for duplicate in submission.duplicates():
27+
dup_sub = praw.models.Submission(reddit, id = duplicate)
28+
if 'imagesof' not in str(dup_sub.subreddit).lower() and 'auto' not in str(dup_sub.subreddit).lower() and 'bot' not in str(dup_sub.author).lower() and 'mistyfront' not in str(dup_sub.subreddit).lower() and 'unitedfederation' not in str(dup_sub.subreddit).lower():
29+
time = dup_sub.created
30+
time = str(datetime.fromtimestamp(time))
31+
author = str(dup_sub.author)
32+
if str(submission.author) == author:
33+
author = author + '[author of both threads]'
34+
duplicates.append({'title':str(dup_sub.title), 'subreddit':str(dup_sub.subreddit), 'link':'https://www.reddit.com'+str(dup_sub.permalink), 'time':str(time), 'author':author, 'karma': str(dup_sub.score)})
35+
if len(duplicates) > 0:
36+
message = 'Here is a list of threads in other subreddits about the same content:\n'
37+
for dup in duplicates:
38+
message = str(message + '\n * [{}]({}) on /r/{} with {} karma (created at {} by {})').format(dup['title'], dup['link'], dup['subreddit'], dup['karma'],dup['time'], dup['author'])
39+
message = message + '\n\n ---- \n\n ^^I ^^am ^^a ^^bot ^^[FAQ](https://www.reddit.com/r/DuplicatesBot/wiki/index)-[Code](https://github.com/PokestarFan/DuplicateBot)-[Bugs](https://www.reddit.com/r/DuplicatesBot/comments/6ypgmx/bugs_and_problems/)-[Suggestions](https://www.reddit.com/r/DuplicatesBot/comments/6ypg85/suggestion_for_duplicatesbot/)-[Block](https://www.reddit.com/r/DuplicatesBot/wiki/index#wiki_block_bot_from_tagging_on_your_posts)'
5740
try:
41+
submission.reply(message)
42+
logger.info('Message posted on {}'.format(sub_id))
5843
logger.debug('Message: {}'.format(message))
44+
message = ''
45+
except(praw.exceptions.APIException, UnboundLocalError)as e:
46+
logger.debug('Submission {} has been skipped due to missing text'.format(sub_id))
47+
message = ''
48+
except(prawcore.exceptions.Forbidden):
49+
logger.debug('You are blocked on /r/{}'.format(str(submission.subreddit)))
50+
message = ''
51+
except(AssertionError):
52+
logger.debug('Assertion Error occured! Printing message and traceback.')
53+
logger.debug(message + str(len(message)), exc_info=True)
54+
message = ''
55+
except(KeyboardInterrupt):
56+
raise KeyboardInterrupt
5957
except:
60-
logger.debug('Message output for exception ')
61-
message = ''
62-
except(prawcore.exceptions.Forbidden):
63-
logger.info('You are blocked on /r/{}'.format(str(submission.subreddit)))
64-
message = ''
65-
except:
66-
logger.error('Error occured!', exc_info=True)
67-
message = ''
58+
logger.error('Error occured!', exc_info=True)
59+
message = ''
60+
except(KeyboardInterrupt):
61+
raise KeyboardInterrupt
62+
except:
63+
logger.error('Error on submission {} occured.'.format(str(sub_id)), exc_info=True)
64+
6865

6966

7067
if __name__ == '__main__':

goodbadbot.py

-27
This file was deleted.

lowpostremover.py

+20-31
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@
99

1010
import time
1111
import praw
12-
from login import reddit as r
12+
from modules.logger import setup_logger
13+
from modules.login import reddit as r
14+
import logging
15+
16+
logger = setup_logger('low_score_remover')
1317

1418
###########################
1519
# definitions
@@ -23,51 +27,37 @@
2327

2428
#defining the searching and removal
2529
def action():
26-
global submission_titles #making global submission title list
2730
global comment_submissions #making glocal comment submission title list
2831
comment_submissions = []
2932
submission_titles = []
3033
submission_number = 0
3134
comment_number = 0
3235
current_submission_number = 0
3336
current_comment_number = 0
34-
print('Searching...')
37+
logging.info('Searching...')
3538
user = r.user.me()
36-
for submission in r.redditor(str(user)).submissions.new(limit=None): #scanning all submissions by reddit user without limit
37-
if submission.score < setvalue: #if statement checking the submission score < 0
38-
submission.delete() #deleting the submission
39-
submission_titles.append(submission.title) #adding the submission title to the list
4039
for comment in r.redditor(str(user)).comments.new(limit=None): #scanning all comments by reddit user without limit
40+
logging.debug('On comment {}'.format(str(comment)))
4141
if comment.score < setvalue: #if statement checking the comment score < 0
4242
comment.delete() #deleteing the comment if < 0
43+
logging.info('Removed comment {}'.format(str(comment)))
4344
comment_submissions.append(comment.submission.title) #adding the comment's original submission title to the list
4445

4546
#defining the outputs
4647
def print_results():
47-
print('Search Complete')
48-
print('--------------------------------------------------')
49-
#if statement. True if there is 1 or more submissions removed.
50-
if len(submission_titles) > 0:
51-
#printing true results
52-
print('Removed ' + str(len(submission_titles)) + ' submission(s).')
53-
print('Submission title(s) include: ')
54-
print(*submission_titles, sep='\n') #printing submission titles with line breaks
55-
print('--------------------------------------------------')
56-
else:
57-
#printing false results
58-
print('No submissions removed.')
59-
print('--------------------------------------------------')
48+
logging.info('Search Complete')
49+
logging.info('--------------------------------------------------')
6050
#if statement. True if there is 1 or more comments removed.
6151
if len(comment_submissions) > 0:
62-
#printing true results
63-
print('Removed ' + str(len(comment_submissions)) + ' comment(s).')
64-
print('Comments were under the following submissions: ')
65-
print(*comment_submissions, sep='\n') #printing comment's submission's titles with line breaks
66-
print('--------------------------------------------------')
52+
#logging.infoing true results
53+
logging.info('Removed ' + str(len(comment_submissions)) + ' comment(s).')
54+
logging.info('Comments were under the following submissions: ')
55+
logging.info(*comment_submissions, sep='\n') #logging.infoing comment's submission's titles with line breaks
56+
logging.info('--------------------------------------------------')
6757
else:
68-
#printing false results
69-
print('No comments removed.')
70-
print('--------------------------------------------------')
58+
#logging.infoing false results
59+
logging.info('No comments removed.')
60+
logging.info('--------------------------------------------------')
7161

7262
###########################
7363
# code execution
@@ -77,7 +67,6 @@ def print_results():
7767
def main():
7868
action()
7969
print_results()
80-
70+
8171
while True:
82-
main()
83-
time.sleep(600)
72+
main()

modules/logger.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import logging
2+
from datetime import datetime
3+
import sys
4+
5+
6+
def setup_logger(name):
7+
file_handler = logging.FileHandler(filename='logs/{}_{}.log'.format(name, datetime.now().strftime('%m_%d_%y')))
8+
stdout_handler = logging.StreamHandler(sys.stdout)
9+
handlers = [file_handler, stdout_handler]
10+
11+
logging.basicConfig(
12+
level=logging.INFO,
13+
format='[%(asctime)s] {%(filename)s:%(lineno)d} (%(funcName)s) %(levelname)s - %(message)s',
14+
handlers=handlers
15+
)
16+
17+
logger = logging.getLogger(__name__)
18+
return logger
19+

run.bat

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@echo off
2+
py duplicate.py
3+
run.bat

updateblockedusers.bat

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
@echo off
2+
SET /P somevar= Username:
3+
echo %somevar%>>blockusers.txt
4+
updateblockedusers.bat

0 commit comments

Comments
 (0)