Voici un exemple complet de lecture, de mise à jour et d'écriture.
Fichier d'entrée, test.ini
[section_a]
string_val = hello
bool_val = false
int_val = 11
pi_val = 3.14
Code de travail.
try:
from configparser import ConfigParser
except ImportError:
from ConfigParser import ConfigParser # ver. < 3.0
# instantiate
config = ConfigParser()
# parse existing file
config.read('test.ini')
# read values from a section
string_val = config.get('section_a', 'string_val')
bool_val = config.getboolean('section_a', 'bool_val')
int_val = config.getint('section_a', 'int_val')
float_val = config.getfloat('section_a', 'pi_val')
# update existing value
config.set('section_a', 'string_val', 'world')
# add a new section and some values
config.add_section('section_b')
config.set('section_b', 'meal_val', 'spam')
config.set('section_b', 'not_found_val', '404')
# save to a file
with open('test_update.ini', 'w') as configfile:
config.write(configfile)
Fichier de sortie, test_update.ini
[section_a]
string_val = world
bool_val = false
int_val = 11
pi_val = 3.14
[section_b]
meal_val = spam
not_found_val = 404
Le fichier d'entrée original reste inchangé.
7 votes
Pourquoi pas docs.python.org/library/configparser.html ?
2 votes
En fait, que diriez-vous de stackoverflow.com/a/3220891/716118 ?
1 votes
Un fichier ini digne de ce nom doit comporter un titre de section tel que
[foobar]
.0 votes
Voir aussi stackoverflow.com/questions/19078170/