feat: add plist.py for decrypting the .plist files to FindMyAccessory

This commit is contained in:
Nick Crews
2025-05-25 16:45:54 -06:00
parent 7f6ee0ec51
commit 0defad71b3
6 changed files with 252 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
"""A package providing everything you need to work with Apple's FindMy network."""
from . import errors, keys, reports, scanner
from . import errors, keys, plist, reports, scanner
from .accessory import FindMyAccessory
from .keys import KeyPair
@@ -9,6 +9,7 @@ __all__ = (
"KeyPair",
"errors",
"keys",
"plist",
"reports",
"scanner",
)