tags:

views:

288

answers:

3

Hello,

I need to import contacts of given email id/pwd from gmail,yahoo,hotmail,etc,etc for python/django app. Please suggest?

- Thanks, Aamir hussain

A: 

you can maybe ask to export the contacts into cvs file (usually possible), upload the file to your site and then you can inspect the file

or you can have a look here for a php version

Martin Trigaux
How is a PHP version remotely related to this question?
ironfroggy
+1  A: 

You might want to look into pinax an open source pluggable django app collection which also has support for yahoo, google and hcard contact import.

tosh
+1  A: 

for msn/hotmail : http://osdir.com/ml/DjangoUsers/2009-06/msg01169.html

for yahoo : http://rocketscience.itteco.org/2009/12/16/importing-yahoo-contacts-in-django/

others are in django-friends app (pinax app), importer source here : http://github.com/jtauber/django-friends/blob/master/friends/importer.py

google is you friend...

Julien