摘要:
安装: pip install selenum 下载 chromedriver 下载链接: https://chromedriver.chromium.org/downloads 注意:下载文件要与chrome版本相兼容(可以在Google的帮助中查看Google的版本) 注意:64位浏览器对应32 阅读全文
摘要:
html格式转md格式 # 模块html2text pip install html2text/pip3 install html2text 测试: import html2text as ht text_maker = ht.HTML2Text() # 读取html格式文件 with open(' 阅读全文
摘要:
一、安装Python-docx Python-docx是专门针对于word文档的一个模块,只能读取docx 不能读取doc文件。 1.1、安装Python-docx 1.1.1、使用虚拟环境安装python-docx pip install python-docx # 安装命令 安装结束后,在此虚拟 阅读全文