pythonpython-3.xini

How to read and write INI file with Python3?


I need to read, write and create an INI file with Python3.

FILE.INI

default_path = "/path/name/"
default_file = "file.txt"

Python File:

#    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!!' )

UPDATED FILE.INI

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

Solution

  • This can be something to start with:

    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)
    

    You can find more at the official configparser documentation.