import requests from bs4 import BeautifulSoup def get_comments(url): headers = { 'UserAgent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'} response = requests.get(url, headers=headers) soup = BeautifulSoup(response.text, 'html.parser') comments = [] # 根据网站结构,找到评论所在的标签和类名 comment_tags = soup.find_all('div', class_='comment') for tag in comment_tags: comment = tag.find('p').text comments.append(comment) return comments if __name__ == '__main__': url = 'https://example.com/article' # 替换为你想要刷留言的网站URL comments = get_comments(url) for comment in comments: print(comment)
小伙伴们,上文介绍了“刷留言源码”的内容,你了解清楚吗?希望对你有所帮助,任何问题可以给我留言,让我们下期再见吧。