Python Hotmail登录

时间:2010-07-14 23:05:51

标签: python

我需要一个提示输入用户名和密码的python脚本,并尝试使用这些凭据登录Hotmail,输出它们是否有效。

2 个答案:

答案 0 :(得分:5)

Hotmail登录!

import poplib

M = poplib.POP3_SSL('pop3.live.com', 995) #Connect to hotmail pop3 server
try:
    M.user(raw_input("username: ")) #Get the username from the standar input
    M.pass_(raw_input("password: ")) #Get the password from the standar input
except:
    print "username or password incorrect"
else:
    print "Successful login"

编辑,因为您只需要知道您是否可以登录,我会重写代码

如果在输入用户名或密码时丢失连接,我不知道会发生什么。

答案 1 :(得分:2)

如果pop3失败,这是另一种选择。只需使用IMAP for hotmail登录,直播或现在只有outlook.com使用python outlook库,你可以在这里下载: https://github.com/awangga/outlook

import outlook
mail = outlook.Outlook()
mail.checkLogin()

它会尝试用户名和密码进行身份验证验证。