Sunday, June 14, 2026
HomeLanguagesPython PRAW – Checking whether a commenter is also the author of...

Python PRAW – Checking whether a commenter is also the author of the submission in Reddit

In Reddit, we can post a comment to any submission, we can also comment on a comment to create a thread of comments. The author of a submission can also later comment on their own submission. Here we will see how to check whether a comment author is also the author of the submission using PRAW. We will be using the is_submitter attribute of the Comment class to check whether a comment author is also the author of the submission.

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 is_submitter attribute
is_submitter = comment.is_submitter 
  
if is_submitter == True:
    print("The commenter is also the author of the submission.")
elif is_submitter == False:
    print("The commenter is not the author of the submission.")


Output :

The commenter is not the author of the submission.

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 is_submitter attribute
is_submitter = comment.is_submitter 
  
if is_submitter == True:
    print("The commenter is also the author of the submission.")
elif is_submitter == False:
    print("The commenter is not the author of the submission.")


Output :

The commenter is not the author of the submission.
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS