Guest User

python script

a guest
Jul 22nd, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 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=10):
  10. print(submission.title)
  11. print(submission.selftext)
Add Comment
Please, Sign In to add comment