当前位置:Gxlcms > Python > Pythonhttplib,smtplib使用方法详解

Pythonhttplib,smtplib使用方法详解

时间:2021-07-01 10:21:17 帮助过:112人阅读

使用httplib访问某个url然后获取返回的内容和使用smtplib发送邮件的脚本实例代码

例一:使用httplib访问某个url然后获取返回的内容:

import httplib

conn
=httplib.HTTPConnection("www.cnblogs.com")
conn.request(
"GET", "/coderzh/archive/2008/05/13/1194445.html")
r
=conn.getresponse()
print r.read() #获取所有内容


例二:使用smtplib发送邮件

import smtplib
smtpServer
= 'smtp.xxx.com'
fromaddr
= 'foo@xxx.com'
toaddrs
= 'your@xxx.com'
msg
= 'Subject: xxxxxxxxx'
server
= smtplib.SMTP(smtpServer)
server.sendmail(fromaddr, toaddrs, msg)
server.quit( )

以上就是Python httplib,smtplib使用方法详解的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行