python-iniparse 0.5-2 source package in Ubuntu

Changelog

python-iniparse (0.5-2) unstable; urgency=medium

  * Team upload.
  * Remove usage of python3-six with upstream patch.

 -- Alexandre Detiste <email address hidden>  Wed, 10 Jan 2024 19:29:48 +0100

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe python
Noble release universe python

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-iniparse_0.5-2.dsc 2.0 KiB 3b893da3731435452c4417b59c684ebbdffb939dc0844e6d0c362cc31f6e9941
python-iniparse_0.5.orig.tar.gz 31.8 KiB 3861300307519ee9b87aa8314e610261749b9562ee3fadccfe79e37b9e821109
python-iniparse_0.5-2.debian.tar.xz 10.9 KiB c5b342e2159c857c27b37d2d03deb9234feec4fb8b9f441ae4a3aa90f9aeb7c7

Available diffs

No changes file available.

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