In Reddit, we can post a comment to any submission, we can also comment on a comment to create a thread of comments. Every comment have some textual information in it which is called the body of the comment. Here we will see how to fetch the body of a comment using PRAW. We will be using the body
attribute of the Comment
class to fetch the body of a comment.
Example 1 : Consider the following comment :
The ID of the comment is : fvib7aw
# importing the module import praw # initialize with appropriate values client_id = "" client_secret = "" username = "" password = "" user_agent = "" # creating an authorized reddit instance reddit = praw.Reddit(client_id = client_id, client_secret = client_secret, username = username, password = password, user_agent = user_agent) # the ID of the comment comment_id = "fvib7aw" # instantiating the Comment class comment = reddit.comment(comment_id) # fetching the body of the comment body = comment.body # printing the body of the comment print ( "The body of the comment is : \n\n" + body) |
Output :
The body of the comment is : I wish I could pet dogs through the screen :(
Example 2 : Consider the following comment:
The ID of the comment is : fv9qvgo
# importing the module import praw # initialize with appropriate values client_id = "" client_secret = "" username = "" password = "" user_agent = "" # creating an authorized reddit instance reddit = praw.Reddit(client_id = client_id, client_secret = client_secret, username = username, password = password, user_agent = user_agent) # the ID of the comment comment_id = "fv9qvgo" # instantiating the Comment class comment = reddit.comment(comment_id) # fetching the body of the comment body = comment.body # printing the body of the comment print ( "The body of the comment is : \n\n" + body) |
Output :
The body of the comment is : What’s the account?
Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.
To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course.