Python PRAW: compruebe si un redditor tiene Reddit premium o no

En Reddit, un redditor es el término dado a un usuario. Reddit permite a los redditores aprovechar el acceso premium mediante el pago de una tarifa. Aquí veremos cómo verificar si un redditor tiene acceso premium o no. Usaremos el is_goldatributo de la Redditorclase para verificar si un redditor tiene acceso premium o no.

Ejemplo 1: Considere el siguiente redditor:

El nombre de usuario del redditor es: 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("Does " + redditor_name + " has an active Reddit Premium status? : " +
      str(redditor.is_gold))

Producción :

Does spez has an active Reddit Premium status? : True

Ejemplo 2: Considere el siguiente redditor:

El nombre de usuario del redditor es: AutoModerador

# 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("Does " + redditor_name + " has an active Reddit Premium status? : " +
      str(redditor.is_gold))

Producción :

Does AutoModerator has an active Reddit Premium status? : True

Publicación traducida automáticamente

Artículo escrito por Yash_R y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *