Support for a default configuration for INI files

This commit is contained in:
2026-02-19 19:57:49 +01:00
parent 02e64e3e45
commit a5ccd67143
11 changed files with 157 additions and 73 deletions
+5
View File
@@ -77,6 +77,11 @@ If the configuration file content is:
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'}}`
## Changelog
### Version 1.2.0
- Support for a default configuration for INI files
- Consistent `__all__` lists in all modules
- Support for `in` at configuration classes
### Version 1.1.1
- Updated the `__init__.py` files in the packages. Now you do not need to run e. g. `import config_parser.parse`, you can simply run `import config_parser` to access `config_parser.parse`