Guest User

Untitled

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