Convert YAML/TOML configuration files to Python objects
Project description
pyya - Simple tool that converts YAML/TOML configuration files to Python objects
Features
- Very
lightweightandsimpleAPI (currently it contains only one function) Easyto use- Based on popular and well-tested libraries (like
pydantic,camel-converter,PyYAML,tomlandmunch) - Automatically
mergedefault and production configuration files - Convert keys in configuration files to
snake_case - YAML/TOML validation with
Pydanticmodels - Generate stub files for your dynamic configuration with
pyyaCLI tool.
Installation
pip install pyya
Or download a specific version from Releases page and install it with:
pip install /path/to/pyya-[version]-py3-none-any.whl
Usage
Example
Create YAML configuration files for your project:
# 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
# config.yaml - this file for production usage
database:
username: username
password: password
name: db
Import configuration files in your Python code with pyya:
# config.py
import json
from pyya import init_config, logger
logger.setLevel(logging.INFO)
config = init_config(
'config.yaml', 'default.config.yaml',
convert_keys_to_snake_case = False,
add_underscore_prefix_to_keywords = False,
raise_error_non_identifiers = False,
replace_dashes_with_underscores = False,
merge_configs = True,
sections_ignored_on_merge = ['redis'], # do not include redis in your config
validate_data_types = True,
allow_extra_sections = True,
warn_extra_sections = True,
)
print(json.dumps(config))
# Output:
# 2025-09-05 09:13:17,280 WARNING pyya The following extra sections will be ignored:
# {'database.name': 'db'}
# 2025-09-05 09:13:17,281 INFO pyya The following sections were overwritten:
# {database: {'host': 'localhost', 'port': 5432}}
# {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 to parse YAML files and munch library to create attribute-stylish dictionaries.
For TOML files the logic is the same except you should point pyya to correct TOML files (e.g. config.toml)
Flags
# convert `camelCase` or `PascalCase` keys to `snake_case`
convert_keys_to_snake_case=False
# add underscore prefix to keys that are Python keywords
add_underscore_prefix_to_keywords=False
# raise error if key name is not valid Python identifier
raise_error_non_identifiers=False
# replace dashes with underscores in section names and keys
replace_dashes_with_underscores=False
# merge default and production configuration files
# setting to `False` disables below flags and makes default config optional
# `False` means "open config file and apply `yaml.safe_load` and `munchify` with specified formatting"
merge_configs=True
# 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=None
# raise error if data types in production config are not the same as default
# validation based on data types inferred from default config
validate_data_types=True
# raise error on any extra sections in production config
allow_extra_sections=True
# if extra sections are allowed, warn about extra keys and values
warn_extra_sections=True
By default autocompletion does not work with attribute-style configurations generated by pyya.
However, you can generate special stub files with .pyi extension to make you LSP or mypy to properly suggest configuration fields.
With pyya it actually very straightforward (assuming you have config.py file like in the example above):
# pyya is a CLI tool installed automatically when you run pip install
pyya --input "default.config.yaml" --output "config.pyi"
This will create a special file with type hints for config.py file (note that both files should have the same basename).
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyya-0.1.12.tar.gz.
File metadata
- Download URL: pyya-0.1.12.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b920e690eda30c33f8ad5f4ab7d645a4351d291fcedd44b87b5ff40d7a2da3d
|
|
| MD5 |
34b8ad5a2bd0d0fd8a957df40ab9fbd6
|
|
| BLAKE2b-256 |
3304ebb53d6f0a346b4468f15353a8e806c93d2b00bc411553ce94f84cf10b61
|
File details
Details for the file pyya-0.1.12-py3-none-any.whl.
File metadata
- Download URL: pyya-0.1.12-py3-none-any.whl
- Upload date:
- Size: 8.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d1495df2ce5987cfc08bbbbfa309f81c9805b0246310d0325faf6f467575ca6
|
|
| MD5 |
87b6b5cda958d8aaeb85e86e2949a86c
|
|
| BLAKE2b-256 |
339ba973d7782459af1e6d3bf00f16f59f63c097e5361fa7738ceb2d2f34402f
|