python-iniparse 0.4-ok2 source package in openKylin

Changelog

python-iniparse (0.4-ok2) yangtze; urgency=medium

  * Fix install has no such option 'install_layout'.

 -- Luoyaoming <email address hidden>  Wed, 14 Sep 2022 10:44:29 +0800

Upload details

Uploaded by:
luoyaoming
Sponsored by:
luzp
Uploaded to:
Yangtze V1.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
python
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Yangtze V1.0 release main python
Yangtze V1.0 proposed main python

Downloads

File Size SHA-256 Checksum
python-iniparse_0.4.orig.tar.gz 30.5 KiB abc1ee12d2cfb2506109072d6c21e40b6c75a3fe90a9c924327d80bc0d99c054
python-iniparse_0.4-ok2.debian.tar.xz 10.3 KiB 835bbccd640ed589d08f36a43d21a737e4dd46b8f5de5f03dc8fb0b0e9152bd4
python-iniparse_0.4-ok2.dsc 1.9 KiB 59411a2f8d91678f9867009248276e58fc47a14c8198e2f7a4e2d4d7e63390ac

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