使用场景:
使用Chrome的无头模式,屏蔽网页浏览器识别浏览器的内部信息,可以无图形化运行,不用担心信息泄露。
文章源自玩技e族-https://www.playezu.com/754221.html
实现方式
评论后查看
原创不易此内容为****隐藏内容****评论后,刷新页面即可查看
开启方式:
options.add_argument('--headless') options.add_argument('--disable=gpu') options.add_experimental_option('excludeSwitches', ['enable-automation'])
安装打包
pip install pyinstaller
打包程序:(.exe形式)
pyinstaller --onefile 路径文章源自玩技e族-https://www.playezu.com/754221.html文章源自玩技e族-https://www.playezu.com/754221.html
评论