You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This module provides the ConfigParser class which implements a basic configuration language which provides a structure similar to what’s found in
# Microsoft Windows INI files. You can use this to write Python programs which can be customized by end users easily.
#
# Interpolation of values
# On top of the core functionality, ConfigParser supports interpolation. This means values can be preprocessed before returning them from get() calls.
#
# class configparser.BasicInterpolation
# The default implementation used by ConfigParser. It enables values to contain format strings which refer to other values in the same section, or values in
# the special default section.
#
# Additional default values can be provided on initialization.