This repository has been archived on 2026-03-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
jakob.scheid 467d0418ff geändert: .gitignore
geändert:       README.md
	geändert:       pyproject.toml
	geändert:       src/config_parser/__init__.py
	neue Datei:     src/config_parser/_configuration.py
	neue Datei:     src/config_parser/exceptions.py
	neue Datei:     src/config_parser/ini.py
	neue Datei:     src/config_parser/json.py
	neue Datei:     src/config_parser/parse/ini.py
	neue Datei:     src/config_parser/parse/json.py
	neue Datei:     tests/ini/test_ini.py
	neue Datei:     tests/json/test.json
	neue Datei:     tests/json/test_json.py
	neue Datei:     tests/json/test_parser.py
	neue Datei:     tests/test_configuration_class.py
2026-02-07 15:28:28 +01:00
2026-02-07 15:28:28 +01:00
2026-02-07 15:28:28 +01:00
2026-02-07 15:28:28 +01:00
2026-02-07 15:28:28 +01:00
2026-02-07 15:28:28 +01:00

config-parser

A library to parse configuration files.

Installation

You can install the library using pip:

pip install config-parser --index-url https://jcloud-services.ddns.net/simple/

Usage

Here are a few simple examples of how to use the config-parser library to read an configuration files:

INI Configuration

from config_parser.ini import INIConfiguration

with open('config.conf', 'r') as file:
    config_content = file.read()

parsed = INIConfiguration.from_string(config_content)
print(dict(parsed))

If the configuration file content is:

global1=global value1
global2=global value2

[section1]
key1=value1
key2=value2

[section2]
hello=world

[section3]
key=value

the result will be {'section1': {'key1': 'value1', 'key2': 'value2'}, 'section2': {'hello': 'world'}, 'section3': {'key': 'value'}}

JSON Configuration

from config_parser.json import JSONConfiguration

with open('config.json', 'r') as file:
    config_content = file.read()

parsed = JSONConfiguration.from_string(config_content)
print(dict(parsed))

If the configuration file content is:

{
    "section1": {
        "key1": "value1",
        "key2": "value2",
        "number": 42,
        "number2": 3.14,
        "number3": -1,
        "boolean": true,
        "boolean2": false,
        "null": null
    },
    "section2": {
        "hello": "world"
    },
    "section3": {
        "key": "value"
    }
}

the result will be {'section1': {'key1': 'value1', 'key2': 'value2', 'number': 42, 'number2': 3.14, 'number3': -1, 'boolean': True, 'boolean2': False, 'null': None}, 'section2': {'hello': 'world'}, 'section3': {'key': 'value'}}

S
Description
A library to parse configuration files.
Readme 78 KiB
Languages
Python 99.1%
Shell 0.9%