Thursday, October 9, 2025
HomeLanguagesPython PRAW – Getting the comment karma of a redditor

Python PRAW – Getting the comment karma of a redditor

In Reddit, a redditor is the term given to a user. Reddit karma is the score you get for posting and commenting on Reddit. Here we will see how to fetch the karma obtained by commenting on Reddit by a redditor. We will be using the comment_karma attribute of the Redditor class to fetch the comment karma.

Example 1 : Consider the following redditor :

The user name of the redditor is : spez.




# 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 name of the redditor
redditor_name = "spez"
  
# instantiating the Redditor class
redditor = reddit.redditor(redditor_name)
  
print("The comment karma of " + redditor_name + " is : " +
      str(redditor.comment_karma))


Output :

The comment karma of spez is : 737457

Example 2 : Consider the following redditor :

The user name of the redditor is : AutoModerator




# 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 name of the redditor
redditor_name = "AutoModerator"
  
# instantiating the Redditor class
redditor = reddit.redditor(redditor_name)
  
print("The comment karma of " + redditor_name + " is : " +
      str(redditor.comment_karma))


Output :

The comment karma of AutoModerator is : 454624
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32348 POSTS0 COMMENTS
Milvus
87 POSTS0 COMMENTS
Nango Kala
6715 POSTS0 COMMENTS
Nicole Veronica
11878 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11941 POSTS0 COMMENTS
Shaida Kate Naidoo
6837 POSTS0 COMMENTS
Ted Musemwa
7095 POSTS0 COMMENTS
Thapelo Manthata
6791 POSTS0 COMMENTS
Umr Jansen
6791 POSTS0 COMMENTS