En Reddit, un redditor es el término dado a un usuario. Todos y cada uno de los redditores tienen un nombre de usuario elegido por ellos durante el registro. Aquí veremos cómo obtener el nombre de usuario de un redditor. Usaremos el name
atributo de la Redditor
clase para obtener el nombre de usuario.
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("The username is : " + redditor.name)
Producción :
The username is : spez
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("The username is : " + redditor.name)
Salida:
el nombre de usuario es: AutoModerator