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.
13 lines
411 B
13 lines
411 B
import praw
|
|
import re
|
|
|
|
reddit = praw.Reddit('bot1')
|
|
subreddit = reddit.subreddit('mahuntingtontest')
|
|
|
|
for comment in subreddit.stream.comments(skip_existing=True):
|
|
print(comment.id + " - " + comment.author.name + ": " + comment.body)
|
|
if comment.author != 'jazzbot2pointw000' and re.search('yeah,?\sman', comment.body, re.I):
|
|
comment.reply('yeah man')
|
|
print('replied')
|
|
print('-----')
|