如何使用 python 检索 Hotmail 联系人

发布于 2024-08-19 15:33:03 字数 50 浏览 4 评论 0原文

如何使用 python 从 hotmail 中检索联系人?

有例子吗?

How can I retrieve contacts from hotmail with python?

Is there any example?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

℡Ms空城旧梦 2024-08-26 15:33:03

Hotmail:Windows Live Contacts API

如果 python 接口不存在您可能不得不求助于屏幕抓取。

Hotmail: Windows Live Contacts API

If a python interface doesn't exist you may have to resort to screen scraping.

吲‖鸣 2024-08-26 15:33:03

使用octazen,但是你必须付费

use octazen, but you have to pay for it

翻了热茶 2024-08-26 15:33:03

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

一些连接信息此处(可能已旧)。

IIRC Hotmail has POP access, so just use the poplib library.

Usage is something like this (NOT tested):

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

Some connectivity info here (might be old).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文