configparser.ConfigParser.read_string()
  • References/Python/Python/File Formats

read_string(string, source='') Parse configuration data from a string. Optional argument source

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

set(section, option, value) If the given section exists, set the given option to the specified value; otherwise raise

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

get(section, option, *, raw=False, vars=None[, fallback]) Get an option value for the named section. If vars

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

plistlib.dump(value, fp, *, fmt=FMT_XML, sort_keys=True, skipkeys=False) Write value to a plist file. Fp should

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

Packer.pack_fopaque(n, data) Packs a fixed length opaque data stream, similarly to pack_fstring().

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

Packer.pack_array(list, pack_item) Packs a variable length list of homogeneous items. First, the length of the list

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

Packer.pack_list(list, pack_item) Packs a list of homogeneous items. This method is useful for lists with an indeterminate

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

Dialect.skipinitialspace When

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
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