plistlib.readPlistFromBytes(data)
Read a plist data from a bytes object. Return the root object.
See load()
for a description of the keyword arguments.
Note
Dict values in the result have a __getattr__
method that defers to __getitem_
. This means that you can use attribute access to access items of these dictionaries.
Deprecated since version 3.4: Use loads()
instead.
Please login to continue.