python-iniparse 0.4-2.2 source package in Ubuntu

Changelog

python-iniparse (0.4-2.2) unstable; urgency=medium

  * Non-maintainer upload.
  * Add Python 3 support.
  * Use pybuild.

 -- Andrew Shadura <email address hidden>  Sat, 22 Aug 2015 10:27:33 +0200

Upload details

Uploaded by:
Ludovico Cavedon
Uploaded to:
Sid
Original maintainer:
Ludovico Cavedon
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Bionic release universe python
Xenial release universe python

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-iniparse_0.4-2.2.dsc 2.0 KiB 05e08e1593441e06ea32d7ab5b8bdc4fd8c7e73b9782be816bd53954dc7d8ce6
python-iniparse_0.4.orig.tar.gz 30.5 KiB abc1ee12d2cfb2506109072d6c21e40b6c75a3fe90a9c924327d80bc0d99c054
python-iniparse_0.4-2.2.debian.tar.xz 10.4 KiB 434cb07737c1b6ac6e05132e28774f90eb76b4b75ab99046a41801e2a9cb4bf3

No changes file available.

Binary packages built by this source

python-iniparse: No summary available for python-iniparse in ubuntu focal.

No description available for python-iniparse in ubuntu focal.

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