Skip to content

Instantly share code, notes, and snippets.

@JakenHerman
Created August 31, 2021 01:36
Show Gist options
  • Save JakenHerman/e52b8963ba5b2dd3274a0792417a5a8f to your computer and use it in GitHub Desktop.
Save JakenHerman/e52b8963ba5b2dd3274a0792417a5a8f to your computer and use it in GitHub Desktop.
import os
import praw
reddit = praw.Reddit(
username = os.environ.get('REDDIT_USERNAME'),
password = os.environ.get('REDDIT_PASSWORD'),
client_id = os.environ.get('API_CLIENT'),
client_secret = os.environ.get('API_SECRET'),
user_agent = "Scooby Searcher Bot"
)
for comment in reddit.subreddit('cartoons').comments(limit=1000):
print(comment.body)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment