Welcome to Ini Handler’s documentation!

Contents:

Ini Handler is a simple and small Python library for reading and writing .ini setting files.

Ini Handler makes implementing user customisable settings painless and simple. It achieves this by limiting the number of methods you have to remember to be able to do what you want to do.

For example:

from ini_handler.vbini import Ini

ini_file = Ini()
ini_file['NewSetting'] = 'Simple!'

print(ini_file['NewSetting'])

Output:

'Simple!'

Just like that we have created and retrieved a new setting!

Indices and tables