En Reddit, un redditor es el término dado a un usuario. Aquí veremos cómo bloquear a un redditor como usuario autenticado usando PRAW. Usaremos el block()
método de la Redditor
clase para bloquear un redditor.
bloquear()
Sintaxis: Redditor.block()
Parámetro: Ninguno
Devoluciones: Nada
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 redditor to be blocked redditor_name = "spez" # instantiating the Redditor class redditor = reddit.redditor(redditor_name) # blocking the redditor redditor.block()
Producción :
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 redditor to be blocked redditor_name = "AutoModerator" # instantiating the Redditor class redditor = reddit.redditor(redditor_name) # blocking the redditor redditor.block()
Producción :