Skip to content

VesnaBrucoms/ini-handler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ini Handler

Version

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!

Testing

You can use invoke to run the unit tests by typing the following:

invoke run_unit_tests

About

Ini handler library for Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages