Metadata-Version: 2.1
Name: pyya
Version: 0.1.6
Summary: Convert YAML configuration files to Python objects
Author-email: shadowy-pycoder <shadowy-pycoder@example.com>
Project-URL: Homepage, https://github.com/shadowy-pycoder/pyya
Project-URL: Repository, https://github.com/shadowy-pycoder/pyya
Project-URL: Issues, https://github.com/shadowy-pycoder/pyya/issues
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: camel-converter >=3.1.2
Requires-Dist: munch >=4.0.0
Requires-Dist: pydantic >=2.5.2
Requires-Dist: pyyaml >=6.0.2
Requires-Dist: types-pyyaml >=6.0.12.20240917

# pyya - Simple tool that converts YAML configuration files to Python objects

![PyPI - Downloads](https://img.shields.io/pypi/dd/pyya)
[![ClickPy Dashboard](https://img.shields.io/badge/clickpy-dashboard-orange)](https://clickpy.clickhouse.com/dashboard/pyya)
![GitHub Downloads (all assets, all releases)](https://img.shields.io/github/downloads/shadowy-pycoder/pyya/total)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/pyya)
[![PyPI - Link](https://img.shields.io/badge/pypi-link-blue)](https://pypi.org/project/pyya/)
![PyPI - Version](https://img.shields.io/pypi/v/pyya)
![PyPI - Wheel](https://img.shields.io/pypi/wheel/pyya)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)

## Features

- Very `lightweight` and `simple` API (currently it contains only one function)
- `Easy` to use
- Based on popular and well-tested libraries (like `pydantic`, `camel-converter`, `PyYAML` and `munch`)
- Automatically `merge` default and production configuration files
- Convert keys in configuration files to `snake_case`
- YAML validation with `Pydantic` models

## Installation

```shell
pip install pyya
```

Or download a specific version from [Releases](https://github.com/shadowy-pycoder/pyya/releases) page and install it with:

```shell
pip install /path/to/pyya-[version]-py3-none-any.whl
```

## Usage

### Example

Create YAML configuration files for your project:

```yaml
# default.config.yaml - this file usually goes to version control system
database:
  host: localhost
  port: 5432
  username: postgres
  password: postgres

redis:
  host: localhost
  port: 6379
```

```yaml
# config.yaml - this file for production usage
database:
  username: username
  password: password
```

Import configuration files in your Python code with `pyya`:

```python
import json

from pyya import init_config, logger

logger.setLevel(logging.INFO)

config = init_config(
    'config.yaml', 'default.config.yaml',
    merge_configs = True,
    sections_ignored_on_merge = ['redis'], # do not include redis in your config
    convert_keys_to_snake_case = False,
    add_underscore_prefix_to_keywords = False
    raise_error_non_identifiers = False,
    validate_data_types = True,
    allow_extra_sections = True,
    )
print(json.dumps(config))

# Output:
# {database: {"host": "localhost", "port": 5432, "username": "username", "password": "password"}}

```

As you can see, `pyya` automatically merges default config file with production config file.

Under the hood `pyya` uses [PyYAML](https://pypi.org/project/PyYAML/) to parse YAML files and [munch](https://pypi.org/project/munch/) library to create attribute-stylish dictionaries.

### Flags

```python
# merge default and production configuration files
# setting to `False` disables other flags and makes default config optional
# `False` means "open config file and apply `yaml.safe_load` and `munchify` with no formatting"
merge_configs=True
```

```python
# list of sections to ignore when merging configs
# it is useful when you have examples in your default config but do not want to have in the main one
sections_ignored_on_merge: Optional[List[str]] = None
```

```python
# convert `camelCase` or `PascalCase` keys to `snake_case`
convert_keys_to_snake_case=False
```

```python
# add underscore prefix to keys that are Python keywords
add_underscore_prefix_to_keywords=False
```

```python
# raise error if key name is not valid Python identifier
raise_error_non_identifiers=False
```

```python
# raise error if data types in config are not the same as default (makes sense only if merge is enabled)
# validation based on data types inferred from default config
validate_data_types=True
```

```python
# raise error if there are extra sections in config (may break if section name formatting is enabled)
allow_extra_sections=True
```

## Contributing

Are you a developer?

- Fork the repository `https://github.com/shadowy-pycoder/pyya/fork`
- Clone the repository: `git clone https://github.com/<your-username>/pyya.git && cd pyya`
- Create your feature branch: `git switch -c my-new-feature`
- Commit your changes: `git commit -am 'Add some feature'`
- Push to the branch: `git push origin my-new-feature`
- Submit a pull request
