retrography
2/6/2016 - 1:16 AM

How to access the Mac OS X Address Book from Python: <http://www.programmish.com/?p=26>

How to access the Mac OS X Address Book from Python: http://www.programmish.com/?p=26

import objc
import AddressBook as ab

import pprint as pp

def pythonize(objc_obj):
    if isinstance(objc_obj, objc.pyobjc_unicode):
        return unicode(objc_obj)
    elif isinstance(objc_obj, ab.NSDate):
        return objc_obj.description()
    elif isinstance(objc_obj, ab.NSCFDictionary):
        # implicitly assuming keys are strings...
        return {k.lower(): pythonize(objc_obj[k])
                for k in objc_obj.keys()}
    elif isinstance(objc_obj, ab.ABMultiValueCoreDataWrapper):
        return [pythonize(objc_obj.valueAtIndex_(index))
                for index in range(0, objc_obj.count())]


_default_skip_properties = frozenset(("com.apple.ABPersonMeProperty",
                                      "com.apple.ABImageData"))
def ab_person_to_dict(person, skip=None):
    skip = _default_skip_properties if skip is None else frozenset(skip)
    props = person.allProperties()
    return {prop.lower(): pythonize(person.valueForProperty_(prop))
            for prop in props if prop not in skip}

def address_book_to_list():
    """
    Read the current user's AddressBook database, converting each person
    in the address book into a Dictionary of values. Some values (addresses,
    phone numbers, email, etc) can have multiple values, in which case a
    list of all of those values is stored. The result of this method is
    a List of Dictionaries, with each person represented by a single record
    in the list.

    Function adapted from: https://gist.github.com/pklaus/1029870
    """
    address_book = ab.ABAddressBook.sharedAddressBook()
    people = address_book.people()
    return [ab_person_to_dict(person) for person in people]

pp.pprint(address_book_to_list())