forked from pool/python-inifile
- Update to v0.4 - Tidy spec - Activate test suite OBS-URL: https://build.opensuse.org/request/show/693820 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-inifile?expand=0&rev=1
8 lines
149 B
Python
8 lines
149 B
Python
from inifile import IniFile
|
|
|
|
i = IniFile('hello.ini')
|
|
i['foo.bar'] = 'testing more stuff'
|
|
i['foo.mup'] = 'aha!'
|
|
print i.get_updated_lines()
|
|
i.save()
|