SMTP是发送邮件的协议,Python内置对SMTP的支持,可以发送纯文本邮件、HTML邮件以及带附件的邮件。 Python对SMTP支持有smtplib和email两个模块,email负责构造邮件,smtplib负责发送邮件。 用set_debuglevel(1)就可以打印出和SMTP服务器交互的 ...
分类:
其他好文 时间:
2020-07-21 22:47:32
阅读次数:
85
查看用户名 :git config user.name 查看密码: git config user.password 查看邮箱:git config user.email 查看配置信息: $ git config --list 修改用户名git config --global user.name " ...
分类:
其他好文 时间:
2020-07-21 21:30:56
阅读次数:
327
1. 输入命令:ssh-keygen -t rsa -C “xxxx@yyy.com” 设置邮箱 2. 三次回车,完成 3. 输入命令:cat ~/.ssh/id_rsa.pub,回车, 查看生成的公钥 4. 在git里添加公钥 配置用户名及邮箱 git config --global user.n ...
分类:
其他好文 时间:
2020-07-21 11:41:38
阅读次数:
116
告警接收器可以通过以下形式进行配置: receivers: - <receiver> ... 每一个receiver具有一个全局唯一的名称,并且对应一个或者多个通知方式: name: <string> email_configs: [ - <email_config>, ... ] hipchat_ ...
分类:
其他好文 时间:
2020-07-20 13:28:07
阅读次数:
92
前期准备 下载并安装Git linux sudo apt-get install git win 下载应用程序,安装即可 设置用户名和email地址 git config --global user.name "Your Name" git config --global user.email "e ...
分类:
其他好文 时间:
2020-07-19 23:15:54
阅读次数:
69
""" /etc/python3 @File : IO_HTTP.py @Time : 2020/7/18 下午3:26 @Author : wangyongqi @Email : 92644827@qq.com @SOftware : PyCharm """ from socket import ...
分类:
编程语言 时间:
2020-07-18 22:38:02
阅读次数:
118
本章主要包含知识点: 很多人学习python,不知道从何学起。很多人学习python,掌握了基本语法过后,不知道在哪里寻找案例上手。很多已经做案例的人,却不知道如何去学习更加高深的知识。那么针对这三类人,我给大家提供一个好的学习平台,免费领取视频教程,电子书籍,以及课程的源代码!QQ群:109752 ...
分类:
编程语言 时间:
2020-07-18 15:55:21
阅读次数:
83
#情景:向服务器上传文件,发送文件,获取目录,和退出 服务器端: """ /etc/python3 @File : miker_server.py @Time : 2020/7/15 下午3:29 @Author : wangyongqi @Email : 92644827@qq.com @SOft ...
分类:
其他好文 时间:
2020-07-17 22:26:01
阅读次数:
83
服务端: """ /etc/python3 @File : poll_test.py @Time : 2020/7/17 下午5:00 @Author : wangyongqi @Email : 92644827@qq.com @SOftware : PyCharm """ from socket ...
分类:
其他好文 时间:
2020-07-17 22:21:19
阅读次数:
90
SELECT DISTINCT t2.xm_code,t2.xm_desc,t2.xm_contact,t3.user_email FROM xm_main t2 LEFT JOIN xm_agree_zb t1 ON t2.xm_code =t1.xm_code LEFT JOIN portal. ...
分类:
其他好文 时间:
2020-07-17 19:50:28
阅读次数:
137