In Reddit, a redditor is the term given to a user. Reddit allows redditors to avail premium access by paying a fee. Here we will see how to check whether a redditor has the premium access or not. We will be using the is_gold
attribute of the Redditor
class to check whether a redditor has the premium access or not.
Example 1 : Consider the following redditor :

The user name of the redditor is : spez.
import praw
client_id = ""
client_secret = ""
username = ""
password = ""
user_agent = ""
reddit = praw.Reddit(client_id = client_id,
client_secret = client_secret,
username = username,
password = password,
user_agent = user_agent)
redditor_name = "spez"
redditor = reddit.redditor(redditor_name)
print ( "Does " + redditor_name + " has an active Reddit Premium status? : " +
str (redditor.is_gold))
|
Output :
Does spez has an active Reddit Premium status? : True
Example 2 : Consider the following redditor :

The user name of the redditor is : AutoModerator
import praw
client_id = ""
client_secret = ""
username = ""
password = ""
user_agent = ""
reddit = praw.Reddit(client_id = client_id,
client_secret = client_secret,
username = username,
password = password,
user_agent = user_agent)
redditor_name = "AutoModerator"
redditor = reddit.redditor(redditor_name)
print ( "Does " + redditor_name + " has an active Reddit Premium status? : " +
str (redditor.is_gold))
|
Output :
Does AutoModerator has an active Reddit Premium status? : True
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!