So, I have this settings.ini:
[SETTINGS] value = 1
And this python script
from ConfigParser import SafeConfigParser parser = SafeConfigParser() parser.read('settings.ini') print parser.get('SETTINGS', 'value')
As you can see, I want to read, and then replace the value "1" with another. All I could do was read. I searched on the net how to replace it, but I did not find it.
Prexeler
source share