首页 > Python资料 博客日记
Python - Selenium抓取抖音直播间评论
2024-10-05 08:00:05Python资料围观33次
这篇文章介绍了Python - Selenium抓取抖音直播间评论,分享给大家做个参考,收藏Python资料网收获更多编程知识
Python - Selenium抓取抖音直播间评论
下面介绍如何使用python中的selenium简单抓取抖音直播间实时评论。
友情提醒,仅供学习交流使用,请勿用于非法用途!
一、创建python项目
1.在目录下新建main.py和venv虚拟环境:
创建虚拟环境:
python -m venv venv
激活虚拟环境:
cd /venv/Scripts
source activate
2.安装selenium:
在激活的虚拟环境(venv)下:
pip install selenium -i https://mirrors.aliyun.com/pypi/simple/
3.下载谷歌浏览器Chrome驱动:
新版selenium会自动下载并载入webDriver,不需要以前的手动配置加载,但每隔一段时间, selenium就会检查webDriver更新并重新下载,重新下载的过程中程序无法运行,且因为网络问题,浏览器需要较长时间才能打开,所以我们选择使用selenium中的service类手动加载webDriver避免每次重新下载webDriver更新,解决浏览器长时间未打开的问题,把下载好的chromedriver.exe放到目录下。
1.在谷歌浏览器输入,获取当前的浏览器版本
chrome://version/
2.然后再访问链接下载驱动(替换自己的浏览器版本:127.0.6533.73)
https://storage.googleapis.com/chrome-for-testing-public/127.0.6533.73/win64/chromedriver-win64.zip
3.并把chromedriver.exe放到项目目录下
二、抓取抖音直播间评论
1.在main.py文件中:
import time # 事件库,用于硬性等待
import threading
from bs4 import BeautifulSoup
from selenium import webdriver # 导入selenium的webdriver模块
from selenium.webdriver.chrome.service import Service
live_dy_url = 'https://live.douyin.com/xxxxxxxxx' # 直播间链接
crawling_browser_dy = None # 浏览器
comment_list = [] # 评论列表
# 打开直播间浏览器
def init_crawling_browser_dy(url):
global crawling_browser_dy
service = Service('./chromedriver.exe')
options = webdriver.ChromeOptions()
# 无头模式
# options.add_argument('--headless')
options.add_experimental_option('detach', True)
# 忽略证书错误
options.add_argument('--ignore-certificate-errors')
# 忽略 Bluetooth: bluetooth_adapter_winrt.cc:1075 Getting Default Adapter failed. 错误
options.add_experimental_option('excludeSwitches', ['enable-automation'])
# 忽略 DevTools listening on ws://127.0.0.1... 提示
options.add_experimental_option('excludeSwitches', ['enable-logging'])
crawling_browser_dy = webdriver.Chrome(options=options,service=service)
crawling_browser_dy.get('https://live.douyin.com/') # 抖音直播主页
crawling_browser_dy.maximize_window() # 浏览器全屏
time.sleep(3) # 等待3s
crawling_browser_dy.get(url) # 跳转到直播间链接
threading.Timer(10, get_comment_list, args=()).start() # 执行:10s
# 获取html标签中的评论文本
def get_comment_list():
global comment_list ,crawling_browser_dy
try:
content_dy = crawling_browser_dy.page_source
soup_dy = BeautifulSoup(content_dy, 'html.parser')
# 找到评论的class名称
items_dy = soup_dy.find_all(class_='webcast-chatroom___xxx webcast-chatroom___xxx') # 元素xpath已被篡改,代码仅供学习参考使用
for item in items_dy[-5:]: # 获取最新的5条评论
text = item.text.split(':')[1] if item.text.count(':') > 0 else item.text
comment_list .append(text)
print(comment_list) # 打印评论列表
comment_list.clear()
threading.Timer(10, get_comment_list, args=()).start() # 重复执行:10s
except:
print('抖音自动化测试浏览器:未找到弹幕标签,请查看直播链接是否已结束或异常关闭')
init_crawling_browser_dy(live_dy_url)
2.运行main.py文件,获取最新的5条评论:
python main.py
到此为止,selenium获取抖音直播间实时评论就完成啦,难点在于selenium的设置和选择好评论文本的class名称。仅供学习交流使用,请勿用于非法用途。
版权声明:本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:jacktools123@163.com进行投诉反馈,一经查实,立即删除!
标签:
相关文章
最新发布
- 【Python】selenium安装+Microsoft Edge驱动器下载配置流程
- Python 中自动打开网页并点击[自动化脚本],Selenium
- Anaconda基础使用
- 【Python】成功解决 TypeError: ‘<‘ not supported between instances of ‘str’ and ‘int’
- manim边学边做--三维的点和线
- CPython是最常用的Python解释器之一,也是Python官方实现。它是用C语言编写的,旨在提供一个高效且易于使用的Python解释器。
- Anaconda安装配置Jupyter(2024最新版)
- Python中读取Excel最快的几种方法!
- Python某城市美食商家爬虫数据可视化分析和推荐查询系统毕业设计论文开题报告
- 如何使用 Python 批量检测和转换 JSONL 文件编码为 UTF-8
点击排行
- 版本匹配指南:Numpy版本和Python版本的对应关系
- 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
- Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
- 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
- Python与PyTorch的版本对应
- Anaconda版本和Python版本对应关系(持续更新...)
- Python pyinstaller打包exe最完整教程
- Could not build wheels for llama-cpp-python, which is required to install pyproject.toml-based proj