0
我正在開發與PRAW的Reddit機器人,我想擁有機器人回覆的人的用戶名。包括以上評論的用戶名在回覆由bot與PRAW
for comment in comments:
comment_text = comment.body.lower()
isMatch = any(string in comment_text for string in words_to_match)
if comment.id not in cache and isMatch:
print("Comment match found;" + comment.id)
comment.reply('Hello + author.name')
print("Reply successful!")
cache.append(comment.id)
但是,這不起作用,它只是作爲文本回復,如預期。是否可以回覆評論的用戶名,然後是更多文本?