contact Module
This module allows to gather and change information of the contact database.
Example:
#Finding a number from the contacts
#In this example we are looking for a contact named "mike"
import contacts
db=contacts.open()
entry=db.find(‘mike’)
entry=entry[0]
num=entry.find(‘mobile_number’)
num=num[0].value
print u"The number is: "+num
