the example from the official documentation http://omz-software.com/pythonista/docs/ios/contacts.html
does not work anymore in this build. It just stops on line 6 without an error.
The problem is the access to the "note" property.
import contacts
print('Address Book Notes')
print('=' * 40)
people = contacts.get_all_people()
for p in people:
note = p.note
if note:
print(p.full_name)
print('-' * 40)
print(note)
print('=' * 40)
the following version without access to the contact notes work as in the older builds... so it has nothing todo with permissions to the contacts in general...
import contacts
print('Address Book Notes')
print('=' * 40)
people = contacts.get_all_people()
for p in people:
print(p.full_name)
print('-' * 40)
print('=' * 40)