Python3でINIファイルを読み書きするにはどうすればいいですか?質問する

Python3でINIファイルを読み書きするにはどうすればいいですか?質問する

読み、書き、作成する必要があります情報Python3 でファイルを作成します。

ファイル.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!!' )

更新しましたファイル.INI

default_path    = "var/shared/"
default_file    = "file.txt"
default_message = "Hey! help me!!"

ベストアンサー1

まずは次のことから始めましょう:

import configparser

config = configparser.ConfigParser()
config.read('FILE.INI')
print(config['DEFAULT']['path'])     # -> "/path/name/"
config['DEFAULT']['path'] = '/var/shared/'    # update
config['DEFAULT']['default_message'] = 'Hey! help me!!'   # create

with open('FILE.INI', 'w') as configfile:    # save
    config.write(configfile)

詳細は公式configparserドキュメント

おすすめ記事