Comment puis-je récupérer des contacts depuis hotmail avec python?Comment récupérer des contacts Hotmail avec python
Y a-t-il un exemple?
Comment puis-je récupérer des contacts depuis hotmail avec python?Comment récupérer des contacts Hotmail avec python
Y a-t-il un exemple?
Hotmail: Windows Live Contacts API
Si une interface python ne vous devrez peut exister de ne pas recourir à la récupération d'écran.
utilisation Octazen, mais vous devez payer
IIRC Hotmail dispose d'un accès POP, donc il suffit d'utiliser la bibliothèque poplib.
L'utilisation est quelque chose comme ça (non testé):
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
Quelques informations de connectivité here (peut-être vieux).
Depuis octazen ne fonctionne plus pour hotmail. Y a-t-il des alternatives Python? – Wolph