Metadata-Version: 2.1
Name: convigure
Version: 0.1.0
Summary: Easy configuration for Python with dot notation.
Home-page: https://github.com/rendicahya/convigure
Author: Randy Cahya Wihandika
Author-email: rendicahya@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Convigure

Easy configuration for Python with dot notation. Currently supports JSON and TOML.

## Installation
```
pip install convigure
```

## Usage
```python
from convigure import Conf

toml = Conf.load_toml("conf.toml")

print(toml.title)
print(toml.images[0])
```
