Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def verify(PTTBot, BoardKey, ID, Aid, Content):
- # 驗證推文
- # 取得文章資訊
- post_info = PTTBot.get_post(BoardKey, aid=Aid)
- # 檢查推文列表
- if post_info:
- comments = post_info['comments']
- for comment in comments:
- # print(comment['author'], comment['content'])
- if comment['author'] == ID and comment['content'] == Content:
- return 'ok'
- return None;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement