How can I check if the ConfigParser mainfile has a section or not,
And if it don´t then add a new section to it?
I am trying with this code:
import ConfigParser
config = ConfigParser.ConfigParser()
#if the config file don´t has the section 'globel', then add it to the config-file
if not config.has_section("globel"):
config.add_section("globel")
config.set("globel", "settings", "someting")
config.write(open("/tmp/myfile.conf", "w"))
print "The new sestion globel is now added!!"
#else just return the the value of globle->settings
else:
config.read("/tmp/myfile.conf")
print "else... globle->settings == "+config.get("globel", "settings")