Python httplib,smtplib使用方法

2019/7/13 22:03:50

本文主要是介绍Python httplib,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使用方法的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程