Guest User

Untitled

a guest
Jun 1st, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. import praw
  2. reddit = praw.Reddit(client_id='',
  3.                      client_secret='',
  4.                      password='',
  5.                      user_agent='',
  6.                      username='')
  7.  
  8. for submission in reddit.subreddit('jokes').hot(limit=35):
  9.     print(submission.title)
Add Comment
Please, Sign In to add comment