diff --git a/app.py b/app.py index 16c6de7..44e824e 100644 --- a/app.py +++ b/app.py @@ -3,6 +3,7 @@ import praw reddit = praw.Reddit('bot1') subreddit = reddit.subreddit('mahuntingtontest') -for comment in subreddit.stream.comments(): +for comment in subreddit.stream.comments(skip_existing=True): if comment.author != 'jazzbot2pointw000': comment.reply('yeah man') + print(comment.id)