Metadata-Version: 2.1
Name: ini-klass
Version: 0.0.3
Summary: ini file parser.
Home-page: https://github.com/trk54ylmz/ini-klass
Author: Tarik Yilmaz
Author-email: tarikyilmaz.54@gmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7
Description-Content-Type: text/markdown

## ini klass

The ini file parser.

### Install

To install a wheel from PyPI,

```bash
pip install --upgrade ini-klass
```

### Usage

Example ini file,

```ini
[example]
id = 12
name = John
status = true
salary = 100.50
group = car, book, phone
```

To parse ini file above,

```python
from ini import IniConfig

# read from `CONFIG` environment
config = IniConfig.read()

# read from file
config = IniConfig.read('/tmp/file.ini')

# access configuration value
name = config.example.name
```
