Installation
Config File is available to download through PyPI and can be installed using pip. It requires Python 3.9+ to install.
Basic Installation
For basic functionality with INI and JSON support:
pip install config-file
This will install the core package with support for:
- INI files (using Python's built-in
configparser) - JSON files (using Python's built-in
json)
Installing with Extras
If you want to work with YAML and TOML files, you'll need to install the optional dependencies:
pip install config-file[yaml,toml]