On Nov 15, 10:49 pm, Ivanko Doikip <[email protected]> wrote:

> is it possible to do it? Thx

Yes. Using the Python api you could do the following to create a new
contact entry and set the gender.

new_contact = gdata.contacts.data.ContactEntry(name='John Doe')
gender          = gdata.data.Gender(value="Male")
new_contact.gender = gender

You could then upload it to Google or whatever. Hope that helps

-- 
You received this message because you are subscribed to the Google
Groups "Google Contacts, Shared Contacts and User Profiles APIs" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://code.google.com/apis/contacts/community/forum.html

Reply via email to