Metadata-Version: 2.4
Name: konfig-master
Version: 0.1.0
Summary: A simple, unified interface for managing application configuration.
Project-URL: Homepage, https://github.com/your-username/config-master
Project-URL: Bug Tracker, https://github.com/your-username/config-master/issues
Author-email: Your Name <your.email@example.com>
License-File: LICENSE
Keywords: config,configuration,json,settings,toml,yaml
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.8
Requires-Dist: pyyaml>=6.0
Requires-Dist: toml>=0.10.2
Description-Content-Type: text/markdown

# Konfig ✨

[![PyPI version](https://img.shields.io/pypi/v/konfig-master.svg)](https://pypi.org/project/konfig-master/)
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
[![Build Status](https://img.shields.io/badge/build-passing-brightgreen.svg)](https://github.com/your-username/konfig-master)

A simple yet powerful Python library for managing application configuration. It loads settings from various file formats into a single, easy-to-use object.

*(Note: The package is published as `konfig-master` on PyPI).*

---

## Key Features 🚀

* **Multi-Format Support:** Natively loads settings from **JSON**, **YAML**, and **TOML** files.
* **Unified Access:** Access nested configuration values using standard dictionary syntax or convenient dot notation (`config.get('database.host')`).
* **Zero Configuration:** Automatically detects the file format from its extension. No need to specify the type.
* **Lightweight & Simple:** Designed with a minimal, intuitive API to make configuration handling effortless.

---

## Installation ⚙️

Install Konfig directly from PyPI:

```bash
pip install konfig-master