Lines Matching refs:plist
1 :mod:`plistlib` --- Generate and parse Apple ``.plist`` files
5 :synopsis: Generate and parse Apple plist files.
14 pair: plist; file
21 and XML plist files.
23 The property list (``.plist``) file format is a simple serialization supporting
27 To write out and to parse a plist file, use the :func:`dump` and
30 To work with plist data in bytes objects, use :func:`dumps`
57 Read a plist file. *fp* should be a readable and binary file object.
67 * :data:`FMT_BINARY`: Binary plist format
70 plist file.
75 by the plist parser.
85 Load a plist from a bytes object. See :func:`load` for an explanation of
93 Write *value* to a plist file. *Fp* should be a writable, binary
96 The *fmt* argument specifies the format of the plist file and can be
99 * :data:`FMT_XML`: XML formatted plist file
101 * :data:`FMT_BINARY`: Binary formatted plist file
104 written to the plist in sorted order, otherwise they will be written in
114 be represented in (binary) plist files.
121 Return *value* as a plist-formatted bytes object. See
145 The XML format for plist files.
152 The binary format for plist files
160 Generating a plist::
180 Parsing a plist::