python-iniparse 0.5.1-ok1 source package in openKylin
Changelog
python-iniparse (0.5.1-ok1) huanghe; urgency=medium * Build for openKylin. -- openKylinBot <email address hidden> Tue, 02 Jun 2026 21:29:38 +0800
python-iniparse (0.5.1-ok1) huanghe; urgency=medium * Build for openKylin. -- openKylinBot <email address hidden> Tue, 02 Jun 2026 21:29:38 +0800
| Series | Published | Component | Section | |
|---|---|---|---|---|
| Huanghe V3.0 | proposed | main | python |
| File | Size | SHA-256 Checksum |
|---|---|---|
| python-iniparse_0.5.1.orig.tar.gz | 32.7 KiB | aa7e6a5340f149ecaa9f2b1059b422937f94387baae96ad4455d527d1071c3d7 |
| python-iniparse_0.5.1-ok1.debian.tar.xz | 7.2 KiB | 9a8d087513aaebae2f7d7ab0d498a59f7d85f23552a71bcb57ce25cb88babf6b |
| python-iniparse_0.5.1-ok1.dsc | 1.9 KiB | 3b485e0d758967d3c374e0ca126ab29b34cf8a4042d5e49af72e466526f233e8 |
iniparse is a INI parser for Python which is:
.
* Compatible with ConfigParser: Backward compatible implementations of
ConfigParser, RawConfigParser, and SafeConfigParser are included that are
API-compatible with the Python standard library. They pass all the unit
tests in Python-2.4.4.
.
* Preserves structure of INI files: Order of sections & options, indentation,
comments, and blank lines are preserved as far as possible when data is
updated.
.
* More convenient: Values can be accessed using dotted notation
(cfg.
.
It is very useful for config files that are updated both by users and by
programs, since it is very disorienting for a user to have her config file
completely rearranged whenever a program changes it. iniparse also allows
making the order of entries in a config file significant, which is desirable
in applications like image galleries.