Open mikez opened 2 years ago
I expect that this is a rights problem, with code running in a launch item not having access to the AddressBook.
Have you tried bundling the script in an app bundle and run it that way. First time running should ask for permission (system dialog), after that running the main binary in the app bundle in a launch bundle will likely work.
python3 -c 'import AddressBook as ab; print(len(ab.ABAddressBook.sharedAddressBook().people()))'
It doesn't show anything at all, just print me 2023-07-04 10:52:42.743 Python[79271:7603071] -[__NSCFString count]: unrecognized selector sent to instance 0x600003d25170 zsh: trace trap python3 -c
@ronaldoussoren Thank you for the helpful reply and sorry for the late response.
Your proposed method resolved it for me. ✅
Here are the steps for others:
ab-example.app
(e.g. with the Script Editor or osacompile
) and launch ab-example.sh
from there.launchd start ab-example
and grant permission to access contacts.
Describe the bug
Using pyobjc via
launchd
does not behave as expected.For example, normally
However, if the command is launched via
launchd
, thenab.ABAddressBook.sharedAddressBook()
returnsNone
.Platform information
To Reproduce
ab-example.sh
with the content here.chmod +x ab-example.sh
to make it executable.ab-example.plist
with the example content here. ReplaceYOUR_USER_HERE
by your username.launchctl load ~/ab-example.plist
launchctl start ab-example
In
ab-example.errors.log
you can seeExpected behavior
ab.ABAddressBook.sharedAddressBook()
does not returnNone
.Note, that this runs fine in the Terminal
Additional context
pyobjc
.