xdrlib.Unpacker.done()
  • References/Python/Python/File Formats

Unpacker.done() Indicates unpack completion. Raises an Error exception if all of the data has not been unpacked

2025-01-10 15:47:30
configparser.RawConfigParser
  • References/Python/Python/File Formats

class configparser.RawConfigParser(defaults=None, dict_type=collections.OrderedDict, allow_no_value=False, *, delimiters=('=', ':'), comment_prefixes=('#', ';'), in

2025-01-10 15:47:30
xdrlib.Unpacker.unpack_fstring()
  • References/Python/Python/File Formats

Unpacker.unpack_fstring(n) Unpacks and returns a fixed length string. n is the number of characters expected. Padding

2025-01-10 15:47:30
xdrlib.Packer.pack_farray()
  • References/Python/Python/File Formats

Packer.pack_farray(n, array, pack_item) Packs a fixed length list (array) of homogeneous items. n is the length

2025-01-10 15:47:30
configparser.ConfigParser.has_option()
  • References/Python/Python/File Formats

has_option(section, option) If the given section exists, and contains the given option, return

2025-01-10 15:47:30
plistlib.readPlist()
  • References/Python/Python/File Formats

plistlib.readPlist(pathOrFile) Read a plist file. pathOrFile may be either a file name or a (readable and binary) file

2025-01-10 15:47:30
configparser.ConfigParser.getint()
  • References/Python/Python/File Formats

getint(section, option, *, raw=False, vars=None[, fallback]) A convenience method which coerces the option in the specified

2025-01-10 15:47:30
plistlib.loads()
  • References/Python/Python/File Formats

plistlib.loads(data, *, fmt=None, use_builtin_types=True, dict_type=dict) Load a plist from a bytes object. See load()

2025-01-10 15:47:30
configparser.ConfigParser.remove_section()
  • References/Python/Python/File Formats

remove_section(section) Remove the specified section from the configuration. If the section in fact existed, return

2025-01-10 15:47:30
csv.DictReader
  • References/Python/Python/File Formats

class csv.DictReader(csvfile, fieldnames=None, restkey=None, restval=None, dialect='excel', *args, **kwds) Create an object

2025-01-10 15:47:30