
python
文章平均质量分 94
QiYe005
天道酬勤
展开
-
Cannot uninstall 'html5lib'. It is a distutils installed project and thus we cannot accurately....
如标题,使用python3.6根据网页博客编写自动下载图片脚本时遇到的相似问题,需要升级第三方库,但是无法卸载,报错类似如下(软件包可能不同,对于相似问题可尝试使用同样方法处理)Cannot uninstall 'html5lib'. It is a distutils installed project and thus we cannot accurately ...转载 2018-05-20 16:48:21 · 19250 阅读 · 11 评论 -
Python SMTP模块使用QQ邮箱发送邮件
前言: 尝试实现《Python编程快速上手 让繁琐工作自动化》书籍中的第十六章习题部分,使用python发送email信息,尝试发送Html,附件和正文都同时存在的邮件,使用QQ邮箱,最终实现根据表格标记对不同用户发不同邮件功能。(根据之前编写的读取表格示例可以实现,思路是读取联系人,邮箱,标志位,根据标志位判断使用不同邮件模板发送,就不编程实现了)过程:首先确认QQ邮箱 smtp地址,端...原创 2018-06-24 10:45:24 · 5618 阅读 · 1 评论 -
python中的模块查询、安装、卸载
转自:https://blog.youkuaiyun.com/u014480530/article/details/53427984列出python中已经安装的模块:进入交互界面,输入help('modules')安装第三方模块:若是单文件模块,直接把文件拷贝到 $python_dir/Lib;若是多文件模块,则有2种方式安装:1:命令安装:pip或easy_installpip install charse...转载 2018-06-10 15:36:28 · 277 阅读 · 0 评论