{"categories":[{"label":"Python Modules","url":"https://skillfed.io/packages/category/software-development-libraries-python-modules/12"}],"enrichment":{"capability":"iniparse is an INI file parser that preserves formatting (comments, indentation, blank lines, section order) while providing ConfigParser-compatible and dotted-notation access to configuration values.","skillfed_tags":["config-file-parsing","structure-preserving","ini-format"],"use_cases":["Preserve user-edited INI files when a program needs to update configuration values programmatically","Build configuration management tools where maintaining file formatting and comments is important for user experience","Replace the standard ConfigParser in legacy Python projects that need structure preservation","Create image gallery or similar applications where the order of entries in a config file carries semantic meaning","Read and modify application settings files while keeping inline documentation and comments intact"],"what_it_does":"iniparse is a Python INI file parser designed to read and write configuration files while preserving their original structure\u2014comments, blank lines, indentation, and section order remain intact when the file is modified. This is especially valuable for config files that are edited both by users and by programs, where reformatting would be disorienting. The package provides backward-compatible implementations of ConfigParser, RawConfigParser, and SafeConfigParser from the Python standard library, so it can be used as a drop-in replacement. It also offers more convenient access patterns: configuration values can be read using dotted notation (e.g., `cfg.user.name`) or standard dictionary syntax (e.g., `cfg['user']['name']`).\n\nThe package depends only on six for Python 2/3 compatibility and installs with low friction. It has been stable since its 2007 release and is classified as Production/Stable. The repository is actively maintained but receives infrequent updates, reflecting its mature and settled state.","worth_installing":"Yes, if you need to read and write INI files while preserving formatting and comments. iniparse is stable, permissively licensed, has no known vulnerabilities, and installs easily. It is a solid choice for config file handling in projects where structure preservation matters. However, if you only need basic INI parsing without formatting concerns, Python's built-in configparser may suffice."},"id":"iniparse","links":{"html":"https://skillfed.io/packages/iniparse","md":"https://skillfed.io/packages/iniparse.md","pypi":"https://pypi.org/project/iniparse/"},"maintenance":{"status":"active"},"meta":{"latest_release":"2020-01-29","license_spdx":null,"license_treatment":"permissive","name":"iniparse","python_support":"unspecified","summary":"Accessing and Modifying INI files"},"popularity":{"monthly_downloads":403554,"position":6916,"tier":"top_15000"},"security":{"n_vulnerabilities":0},"version":"0.5"}
