https://github.com/jirihnidek/python-iniparse
Python iniparse module with patches from Fedora project
https://github.com/jirihnidek/python-iniparse
ini parser python
Last synced: 25 days ago
JSON representation
Python iniparse module with patches from Fedora project
- Host: GitHub
- URL: https://github.com/jirihnidek/python-iniparse
- Owner: jirihnidek
- License: other
- Created: 2018-05-17T15:44:47.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-17T15:49:51.000Z (about 8 years ago)
- Last Synced: 2025-03-06T02:35:50.016Z (over 1 year ago)
- Topics: ini, parser, python
- Language: Python
- Size: 37.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: Changelog
- License: LICENSE
Awesome Lists containing this project
README
Introduction to iniparse
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.
* 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.
Website: http://code.google.com/p/iniparse/
Mailing List: iniparse-discuss@googlegroups.com
Copyright (c) 2001-2008 Python Software Foundation
Copyright (c) 2004-2009 Paramjit Oberoi
Copyright (c) 2007 Tim Lauridsen
All Rights Reserved. See LICENSE-PSF & LICENSE for details.