📌  相关文章
📜  Python PRAW – 解锁 redditor

📅  最后修改于: 2022-05-13 01:55:09.066000             🧑  作者: Mango

Python PRAW – 解锁 redditor

在 Reddit 中,redditor 是给予用户的术语。在这里,我们将看到如何使用 PRAW 以经过身份验证的用户身份解锁被阻止的 redditor。我们将使用 Redditor 类的unblock()方法来解除对Redditor的阻止。

解锁()

示例 1:考虑以下未阻止的 redditor:

redditor的用户名是: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)
  
# unblocking the redditor
redditor.unblock()

输出 :

示例 2:考虑以下未阻止的 redditor:

redditor 的用户名是:AutoModerator

# 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)
  
# unblocking the redditor
redditor.unblock()

输出 :