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

Commit f660d65

Browse files
author
PokestarFan
committed
More changes, new module
1 parent 8a2ebc0 commit f660d65

File tree

6 files changed

+66
-4
lines changed

6 files changed

+66
-4
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -112,3 +112,6 @@ blockusers.txt
112112
#logs
113113
*.log
114114
logs/
115+
116+
#good bot bad bot file
117+
comments_written_to.txt

delete.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import praw
22
from modules.logger import setup_logger
33
from modules.login import reddit
4+
from modules.footer import footer
45
import logging
56
import time
67

@@ -15,11 +16,13 @@ def main():
1516
if 'delete' in item.body.lower():
1617
item.parent().delete()
1718
logging.info('Comment {} removed'.format(str(item.parent())))
18-
item.reply('The top level post has been removed.')
19+
item.reply('The top level post has been removed.'+footer)
1920
except:
2021
logging.debug('Item {} skipped'.format(str(item)))
22+
except(KeyboardInterrupt):
23+
raise KeyboardInterrupt
2124
except:
22-
logging.debug('Error!', exc_info=True)
25+
logging.error('Error!', exc_info=True)
2326
main()
2427

2528
while True:

duplicate.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
import praw
55
import prawcore
66
from modules.login import reddit
7+
from modules.footer import footer
78

89
logger = setup_logger('duplicates')
910

@@ -36,7 +37,7 @@ def action():
3637
message = 'Here is a list of threads in other subreddits about the same content:\n'
3738
for dup in duplicates:
3839
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)\n\n^^Now ^^you ^^can ^^remove ^^the ^^comment ^^by ^^replying ^^delete!'
40+
message = message + footer
4041
try:
4142
submission.reply(message)
4243
logger.info('Message posted on {}'.format(sub_id))

gb-bb.py

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
import praw
2+
from modules.logger import setup_logger
3+
from modules.login import reddit
4+
import logging
5+
from modules.footer import footer
6+
7+
logger = setup_logger('good_bot_bad_bot')
8+
9+
def main():
10+
try:
11+
for item in reddit.inbox.stream():
12+
written_to = 0
13+
text = ''
14+
with open('comments_written_to.txt', 'r') as file:
15+
for line in file.readlines():
16+
if line == str(item) and written_to == 0:
17+
written_to = 1
18+
logging.info('Comment {} has been already replied to.'.format(str(item)))
19+
if written_to == 0:
20+
if 'good bot' in str(item.body.lower()):
21+
text = 'Good human'
22+
item.reply(text+footer)
23+
logging.info('Message with the text {} replied to comment {}'.format(text, str(item)))
24+
with open('comments_written_to.txt', 'a') as file:
25+
file.write(str(item)+'\n')
26+
elif 'bad bot' in str(item.body.lower()):
27+
text = 'Bad human'
28+
item.reply(text+footer)
29+
logging.info('Message with the text {} replied to comment {}'.format(text, str(item)))
30+
with open('comments_written_to.txt', 'a') as file:
31+
file.write(str(item)+'\n')
32+
elif 'average bot' in str(item.body.lower()):
33+
text = 'Average human'
34+
item.reply(text+footer)
35+
logging.info('Message with the text {} replied to comment {}'.format(text, str(item)))
36+
with open('comments_written_to.txt', 'a') as file:
37+
file.write(str(item)+'\n')
38+
elif 'bot' in str(item.body.lower()):
39+
strings = str(item.body.lower()).split('bot')
40+
text = '{} human'.format(strings[0])
41+
item.reply(text+footer)
42+
logging.info('Message with the text {} replied to comment {}'.format(text, str(item)))
43+
with open('comments_written_to.txt', 'a') as file:
44+
file.write(str(item)+'\n')
45+
except(KeyboardInterrupt):
46+
raise KeyboardInterrupt
47+
except:
48+
logging.error('Error', exc_info = True)
49+
50+
if __name__ == '__main__':
51+
while True:
52+
try:
53+
main()
54+
except(KeyboardInterrupt):
55+
raise KeyboardInterrupt

lowpostremover.py

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727

2828
#defining the searching and removal
2929
def action():
30-
logging.info('Searching...')
3130
user = r.user.me()
3231
for comment in r.redditor(str(user)).comments.new(limit=None): #scanning all comments by reddit user without limit
3332
logging.debug('On comment {}'.format(str(comment)))

modules/footer.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
footer = '\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)\n\n^^Now ^^you ^^can ^^remove ^^the ^^comment ^^by ^^replying ^^delete!'

0 commit comments

Comments
 (0)