this is likely an FAQ/error on my behalf, but I cant find anything.
This python script:
from appscript import *
ab = app('Address Book')
ret = ab.make(new=k.person, with_properties={k.organization: u'Automated Workflows, \n LLC', k.first_name: u'Ben', k.last_name: u'Waldie', k.job_title: u'President'})
print ret
ab.save
thePerson=ab.people[its.last_name == u'Waldie'].get()
for p in thePerson:
print p.properties.get()[k.first_name]
print p
ab.quit(saving=k.yes)
should create and safe a new user in Address Book (OS X, snow leopard). It seems to create the user all right, but the new entry does not show up in Address Book.
??
Any help much appreciated!
thanks a lot,
Holger