Hotmail:Windows Live Contacts API
如果python界面不存在,您可能不得不求助于屏幕抓取。
IIRC Hotmail具有POP访问权限,因此只需使用poplib库。
用法是这样的(未经测试):
hotmail = poplib.POP3_SSL('pop3.live.com', 995)
hotmail.user(USERNAME)
hotmail.pass_(PASSWORD)
message_count = len(hotmail.list()[1])
for i in range(message_count):
for message in hotmail.retr(i+1)[1]
print message
一些连接信息here(可能是旧的)。