Guest User

Untitled

a guest
Apr 4th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. import praw
  2. from praw.models import MoreComments
  3. reddit = praw.Reddit(user_agent='Comment Extraction (by /u/”username”)',client_id="XXXXXX", client_secret="XXX",username='iaXXX', password='AXXX')
  4. submission = reddit.submission(url='https://www.reddit.com/r/ethtrader/comments/7pdp3g/daily_general_discussion_january_10_2018/?limit=500')
  5. for top_level_comment in submission.comments:
  6. print(top_level_comment.body)
Add Comment
Please, Sign In to add comment