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 은 어떻 습니까?
—
일부 프로그래머 친구
실제로 stackoverflow.com/a/3220891/716118은 어떻습니까?
—
voithos
적절한 ini 파일에는
—
Martin Thoma
[foobar]
.