https://github.com/aoamusat/iniutil
INI parser for python
https://github.com/aoamusat/iniutil
ini-parser python
Last synced: 4 months ago
JSON representation
INI parser for python
- Host: GitHub
- URL: https://github.com/aoamusat/iniutil
- Owner: aoamusat
- License: mit
- Created: 2024-01-28T18:04:20.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-12T09:00:59.000Z (about 1 year ago)
- Last Synced: 2025-09-21T23:17:38.765Z (9 months ago)
- Topics: ini-parser, python
- Language: Python
- Homepage: https://pypi.org/project/iniutil/
- Size: 20.5 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Config File Parser
A Python module for parsing configuration files in INI format.
## Overview
This project provides a simple and flexible Python module for parsing configuration files in INI format. It allows you to read an INI file and convert it into a nested dictionary structure for easy access to configuration settings.
## Features
- Parse INI configuration files.
- Handle sections, keys, values, and comments.
- Support for various data types, including strings, integers, booleans, and floating-point numbers.
- Easy-to-use API for accessing configuration settings.
## Getting Started
### Installation
Using PyPI:
```bash
pip install iniutil
```
## Usage
```python
from iniutil import parse_ini
config = parse_ini("path/to/config.ini")
```