socketserver
- socketserver的http.server使用
Python内置了支持HTTP协议的模块,我们可以用来开发单机版功能较少的Web服务器。
import http.server
import socketserver
port = 8000
host = '127.0.0.1'
address = (host, port)
# handle = SimpleHTTPRequest.SimpleHTTPRequestHandler
handle = http.server.SimpleHTTPRequestHandler
with socketserver.TCPServer(address, handle) as httpd:
print("server start")
httpd.serve_forever()
#通过浏览器访问127.0.0.1:8000端口查看
使用yamail发送邮件
首先安装yamail
安装
pip3 install yagmail
下面是简单的发送邮件的例子
import yagmail
args={
"user": "shanwu1219@163.com",
"password": "xxxxxx",
"host": "smtp.163.com",
"port": "465"
}
emailList=["981240760@qq.com"]
email = yagmail.SMTP(**args)
email.send(to='981240760@qq.com',subject="shan",contents='''wushan''')
#查看邮箱
shan
发件人:shanwu1219@163.com <shanwu1219@163.com>
时 间:2018年6月6日(星期三) 晚上11:03
收件人:
shan <981240760@qq.com>
网站安全云检测 这是一封垃圾箱中的邮件。请勿轻信中奖、汇款等虚假信息,勿轻易拨打陌生电话。 举报垃圾邮件 移回收件箱
wushan
smtplib库的使用
SMTP(Simple Mail Transfer Protocol)即简单邮件传输协议,它是一组用于由源地址到目的地址传送邮件的规则,由它来控制信件的中转方式。
python的smtplib提供了一种很方便的途径发送电子邮件。它对smtp协议进行了简单的封装。Python创建 SMTP 对象语法如下:
import smtplib
smtpObj = smtplib.SMTP( [host [, port [, local_hostname]]] )
参数说明:
host: SMTP 服务器主机。 你可以指定主机的ip地址或者域名如: runoob.com,这个是可选参数。
port: 如果你提供了 host 参数, 你需要指定 SMTP 服务使用的端口号,一般情况下 SMTP 端口号为25。
local_hostname: 如果 SMTP 在你的本机上,你只需要指定服务器地址为 localhost 即可。Python SMTP 对象使用 sendmail 方法发送邮件,语法如下:
SMTP.sendmail(from_addr, to_addrs, msg[, mail_options, rcpt_options])
参数说明:
from_addr: 邮件发送者地址。
to_addrs: 字符串列表,邮件发送地址。
msg: 发送消息
这里要注意一下第三个参数,msg 是字符串,表示邮件。我们知道邮件一般由标题,发信人,收件人,邮件内容,附件等构成,发送邮件的时候,要注意 msg 的格式。这个格式就是 smtp 协议中定义的格式。
import email.mime.multipart
import email.mime.text
import smtplib
msg = email.mime.multipart.MIMEMultipart()
msg['from'] = 'shanwu1219@163.com'
msg['to'] = '981240760@qq.com'
msg['subject'] = 'good good study'
context = '''
<h1>你好</h1>
这是一封自动发送的邮件。
'''
text = email.mime.text.MIMEText(_text=context, _subtype="html")
msg.attach(text)
em = smtplib.SMTP_SSL()
em.connect("smtp.163.com", 465)
em.login("shanwu1219@163.com", 'xxxx')
em.sendmail(from_addr='shanwu1219@163.com', to_addrs='981240760@qq.com', msg=msg.as_string())
em.quit()
#查看邮箱的邮件
good good study
发件人:shanwu1219 <shanwu1219@163.com>
时 间:2018年6月6日(星期三) 晚上11:12
收件人:
shan <981240760@qq.com>
网站安全云检测 这是一封垃圾箱中的邮件。请勿轻信中奖、汇款等虚假信息,勿轻易拨打陌生电话。 举报垃圾邮件 移回收件箱
你好
这是一封自动发送的邮件。