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

Upload details

Uploaded by:
openKylinBot
Sponsored by:
Cibot
Uploaded to:
Huanghe V3.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
python
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Huanghe V3.0 proposed main python

Downloads

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

Available diffs

View changes file

Binary packages built by this source

python3-iniparse: access and modify configuration data in INI files (Python 3)

 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.user.name), or using container syntax (cfg['user']['name']).
 .
 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.