python-iniparse 0.5-ok1 source package in openKylin

Changelog

python-iniparse (0.5-ok1) nile; urgency=medium

  * Build for openKylin.

 -- openKylinBot <email address hidden>  Mon, 06 May 2024 21:58:39 +0800

Upload details

Uploaded by:
openKylinBot
Sponsored by:
Cibot
Uploaded to:
Nile V2.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
Huanghe V3.0 release main python
Nile V2.0 release main python
Nile V2.0 proposed main python

Builds

Nile V2.0: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-iniparse_0.5.orig.tar.gz 31.8 KiB 3861300307519ee9b87aa8314e610261749b9562ee3fadccfe79e37b9e821109
python-iniparse_0.5-ok1.debian.tar.xz 10.4 KiB 09bc84468bd90c8a86ef51bdbcae2b027664bfdf3ff6027c8ad5fe02eadf41bd
python-iniparse_0.5-ok1.dsc 1.9 KiB b1ccfd02469fc6b5bde76c983e6bd18355aab63adbd8cf7df307fbf03261e5d7

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.
 .
 This is a Python 3 version of the package