How to add multiple sections config parser?

346 Views Asked by At
def contador(self):

    estado=self.ui.chbL01
    lugar=self.ui.lineEdit
    global contadorr

    if(estado.isChecked()):
        contadorr=contadorr+1
        self.ui.lineEdit.setText(str(contadorr))
        config = ConfigParser.RawConfigParser()
        pedidos=open("pedidos.ini",'w')
        config.add_section(str(contadorr))
        config.write(pedidos)
        pedidos.close()

I want to create a section from contador.

1

There are 1 best solutions below

0
On