Apple AddressBook

From Simson Garfinkel
Revision as of 18:11, 18 March 2018 by Simson (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Access through SQLite

Apple AddressBook now uses sqlite3 to store data.

You can get a list of all your correspondents with this query:

 select ZFIRSTNAME,ZLASTNAME,ZADDRESS from ZABCDRECORD,ZABCDEMAILADDRESS where ZABCDRECORD.Z_PK = ZABCDEMAILADDRESS.ZOWNER limit 1;

Access through API

Access to LinkedIn and Facebook AddressBook

Installing

   $ pip install pyobjc-framework-AddressBook