Skip to content

Instantly share code, notes, and snippets.

@tkh44
Created August 14, 2012 21:54
Show Gist options
  • Save tkh44/3353363 to your computer and use it in GitHub Desktop.
Save tkh44/3353363 to your computer and use it in GitHub Desktop.
gets info from reddit subreddit
import praw
from pprint import pprint
r = praw.Reddit(user_agent='Reddit Music Bot')
submissions = r.get_subreddit('listentothis').get_top(limit=10)
for submission in submissions:
print '\n%s\n' % submission
pprint(vars(submission))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment