Python3でINIファイルを読み取り、書き込み、作成する必要があります。
FILE.INI
default_path = "/path/name/"
default_file = "file.txt"
Pythonファイル:
# Read file and and create if it not exists
config = iniFile( 'FILE.INI' )
# Get "default_path"
config.default_path
# Print (string)/path/name
print config.default_path
# Create or Update
config.append( 'default_path', 'var/shared/' )
config.append( 'default_message', 'Hey! help me!!' )
更新された FILE.INI
default_path = "var/shared/"
default_file = "file.txt"
default_message = "Hey! help me!!"
5
どの程度docs.python.org/library/configparser.html?
—
一部のプログラマー、
適切なiniファイルには、のようなセクション見出しが必要
—
Martin Thoma
[foobar]
です。