当前位置:天才代写 > tutorial > Python教程 > python登录pop3邮件服务器接收邮件

python登录pop3邮件服务器接收邮件

2018-05-17 08:00 星期四 所属: Python教程 浏览:349

python">import poplib, string
PopServerName = "mail.yourserver.com"
PopServer = poplib.POP3(PopServerName)

print PopServer.getwelcome()
PopServer.user('yourName')

PopServer.pass_('yourPass')
r, items, octets = PopServer.list()
msgid, size = string.split(items[-1])
r, msg, octets = PopServer.retr(msgid)
msg = string.join(msg, "\n")
print msg

标签:python

 

    关键字:

天才代写-代写联系方式