Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import praw
- import config
- import time
- import os
- import random
- import keep_alive
- keep_alive.keep_alive()
- with open("mud.txt", "r") as file:
- allText = file.read()
- words = list(map(str, allText.split()))
- def bot_login():
- print ("Logging in...")
- r = praw.Reddit(username = config.username,
- password = config.password,
- client_id = config.client_id,
- client_secret = config.client_secret,
- user_agent = "The Reddit Commenter v1.0")
- print ("Logged in!")
- return r
- def run_bot(r, comments_replied_to):
- print ("Searching last 1,000 comments")
- for comment in r.subreddit('pokemon').comments(limit=1000):
- if "Mudkip" in comment.body and comment.id not in comments_replied_to and comment.author != r.user.me or "mudkip" in comment.body and comment.id not in comments_replied_to and comment.author != r.user.me or ():
- print ("String with \"Mudkip\" found in comment ")
- comment.reply(random.choice(words))
- print ("Replied to comment " + comment.id)
- comments_replied_to.append(comment.id)
- with open ("comments_replied_to.txt", "a") as f:
- f.write(comment.id + "\n")
- print ("Search Completed.")
- print (comments_replied_to)
- print ("Sleeping for 10 seconds...")
- #Sleep for 10 seconds...
- time.sleep(10)
- def get_saved_comments():
- if not os.path.isfile("comments_replied_to.txt"):
- comments_replied_to = []
- else:
- with open("comments_replied_to.txt", "r") as f:
- comments_replied_to = f.read()
- comments_replied_to = comments_replied_to.split("\n")
- comments_replied_to = filter(None, comments_replied_to)
- return comments_replied_to
- r = bot_login()
- comments_replied_to = get_saved_comments()
- print (comments_replied_to)
- while True:
- run_bot(r, comments_replied_to)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement