Issue
This Content is from Stack Overflow. Question asked by Alifagha Salmanov
I want to fetch certain number of comment. How can i do this? My code:
subreddit = reddit.subreddit("askReddit")
top = subreddit.hot(limit=1)
for submission in top:
print("Title : ", submission.title)
for comment in submission.comments:
# avoid error. Doesn't important
if isinstance(comment, MoreComments):
continue
print("Comment :", comment.body)
That takes too long fetch comments
Solution
This question is not yet answered, be the first one who answer using the comment. Later the confirmed answer will be published as the solution.
This Question and Answer are collected from stackoverflow and tested by JTuto community, is licensed under the terms of CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.