Le istanze di RawConfigParser possiedono i seguenti metodi:
) |
) |
DEFAULT
non viene
incluso nella lista.
section) |
section) |
DEFAULT
non viene riconosciuta.
section) |
section, option) |
filenames) |
import ConfigParser, os config = ConfigParser.ConfigParser() config.readfp(open('defaults.cfg')) config.read(['site.cfg', os.path.expanduser('~/.myapp.cfg')])
fp[, filename]) |
section, option) |
section, option) |
section, option) |
section, option) |
"1"
,
"yes"
, "true"
e "on"
, che fa sì che il metodo
restituisca il valore True
e "0"
, "no"
,
"false"
e "off"
, che fa sì che ritorni False
.
Questi valori di stringa possono essere sia maiuscoli che minuscoli. Ogni
altro valore solleverà l'eccezione ValueError.
section) |
(nome, valore)
per
ogni opzione nella sezione section.
section, option, value) |
fileobject) |
section, option) |
section) |
True
. Altrimenti viene restituito
False
.
option) |
Vedete Circa questo documento... per informazioni su modifiche e suggerimenti.