📌  相关文章
📜  Python PRAW – 检查评论是否在 Reddit 中被粘贴

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

Python PRAW – 检查评论是否在 Reddit 中被粘贴

在 Reddit 中,我们可以对任何提交发表评论,也可以对评论发表评论以创建评论线程。 subreddit 的版主可以将任何评论标记为置顶。在这里,我们将看到如何使用 PRAW 检查评论是否已粘贴。我们将使用Comment类的stickied属性来检查评论是否被粘贴。

示例 1:考虑以下评论:

评论的ID是:fvib7aw

# 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 ID of the comment
comment_id = "fvib7aw"
  
# instantiating the Comment class
comment = reddit.comment(comment_id)
  
# fetching the stickied attribute
stickied = comment.stickied
    
if stickied == False:
    print("The comment is not stickied.")
else:
    print("The comment has been marked stickied.")

输出 :

The comment is not stickied.

示例 2:考虑以下评论:

评论的ID是:fv9qvgo

# 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 ID of the comment
comment_id = "fv9qvgo"
  
# instantiating the Comment class
comment = reddit.comment(comment_id)
  
# fetching the stickied attribute
stickied = comment.stickied
    
if stickied == False:
    print("The comment is not stickied.")
else:
    print("The comment has been marked stickied.")

输出 :

The comment is not stickied.