configparser.RawConfigParser.add_section()
  • References/Python/Python/File Formats

add_section(section) Add a section named section to the instance. If a section by the given name already exists,

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

configparser.optionxform(option) This method transforms option names on every read, get, or set operation. The default converts

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

class configparser.BasicInterpolation The default implementation used by ConfigParser. It enables values to contain

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

Dialect.skipinitialspace When

2025-01-10 15:47:30
csv.DictWriter.writeheader()
  • References/Python/Python/File Formats

DictWriter.writeheader() Write a row with the field names (as specified in the constructor).

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

Unpacker.unpack_opaque() Unpacks and returns a variable length opaque data string, similarly to unpack_string()

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

class csv.unix_dialect The unix_dialect class defines the usual properties of a CSV file generated on UNIX systems

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

exception configparser.NoOptionError Exception raised when a specified option is not found in the specified section.

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

read_dict(dictionary, source='') Load configuration from any object that provides a dict-like items() method. Keys

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

configparser.SECTCRE A compiled regular expression used to parse section headers. The default matches [section]

2025-01-10 15:47:30