En Reddit, un redditor es el término dado a un usuario. Un moderador es un redditor cuya tarea es moderar un subreddit. Aquí veremos cómo comprobar si un redditor es moderador de algún subreddit o no. Usaremos el is_mod
atributo de la Redditor
clase para verificar si un redditor es un moderador 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("Is " + redditor_name + " a moderator? : " + str(redditor.is_mod))
Producción :
Is spez a moderator? : 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("Is " + redditor_name + " an employee of Reddit? : " + str(redditor.is_mod))
Producción :
Is AutoModerator a moderator? : True