# OmegaConf
| | Description |
| --- | --- |
| Project | [![PyPI version](https://badge.fury.io/py/omegaconf.svg)](https://badge.fury.io/py/omegaconf)[![Downloads](https://pepy.tech/badge/omegaconf/month)](https://pepy.tech/project/omegaconf?versions=1.4.*&versions=2.0.*&versions=2.1.*)![PyPI - Python Version](https://img.shields.io/pypi/pyversions/omegaconf.svg) |
| Code quality| [![CircleCI](https://img.shields.io/circleci/build/github/omry/omegaconf?logo=s&token=5de2f8dc2a0dd78438520575431aa533150806e3)](https://circleci.com/gh/omry/omegaconf)[![Coverage Status](https://coveralls.io/repos/github/omry/omegaconf/badge.svg)](https://coveralls.io/github/omry/omegaconf)[![Total alerts](https://img.shields.io/lgtm/alerts/g/omry/omegaconf.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/omry/omegaconf/alerts/)[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/omry/omegaconf.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/omry/omegaconf/context:python)|
| Docs and support |[![Documentation Status](https://readthedocs.org/projects/omegaconf/badge/?version=2.0_branch)](https://omegaconf.readthedocs.io/en/2.1_branch/)[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/omry/omegaconf/master?filepath=docs%2Fnotebook%2FTutorial.ipynb)|
OmegaConf is a hierarchical configuration system, with support for merging configurations from multiple sources (YAML config files, dataclasses/objects and CLI arguments)
providing a consistent API regardless of how the configuration was created.
## Releases
### Stable (2.2)
OmegaConf 2.2 is the current stable version.
* [What's new](https://github.com/omry/omegaconf/releases/tag/v2.2.1)
* [Documentation](https://omegaconf.readthedocs.io/en/2.2_branch/)
* [Source code](https://github.com/omry/omegaconf/tree/2.2_branch)
Install with `pip install --upgrade omegaconf`
### Previous release (2.1)
OmegaConf 2.1 is the current stable version.
* [What's new](https://github.com/omry/omegaconf/releases/tag/v2.1.1)
* [Documentation](https://omegaconf.readthedocs.io/en/2.1_branch/)
* [Slides](https://docs.google.com/presentation/d/e/2PACX-1vT_UIV7hCnquIbLUm4NnkUpXvPEh33IKiUEvPRF850WKA8opOlZOszjKdZ3tPmf8u7hGNP6HpqS-NT5/pub?start=false&loop=false&delayms=3000)
* [Source code](https://github.com/omry/omegaconf/tree/2.1_branch)
Install with `pip install omegaconf==2.1`
### Previous release (2.0)
* [What's new](https://github.com/omry/omegaconf/releases/tag/v2.0.0)
* [Documentation](https://omegaconf.readthedocs.io/en/2.0_branch/)
* [Slides](https://docs.google.com/presentation/d/e/2PACX-1vT_UIV7hCnquIbLUm4NnkUpXvPEh33IKiUEvPRF850WKA8opOlZOszjKdZ3tPmf8u7hGNP6HpqS-NT5/pub?start=false&loop=false&delayms=3000)
* [Source code](https://github.com/omry/omegaconf/tree/2.0_branch)
Install with `pip install omegaconf==2.0.6`
## Live tutorial
Run the live tutorial: [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/omry/omegaconf/master?filepath=docs%2Fnotebook%2FTutorial.ipynb)
Raw data
{
"_id": null,
"home_page": "https://github.com/omry/omegaconf",
"name": "omegaconf",
"maintainer": "",
"docs_url": null,
"requires_python": ">=3.6",
"maintainer_email": "",
"keywords": "yaml configuration config",
"author": "Omry Yadan",
"author_email": "omry@yadan.net",
"download_url": "https://files.pythonhosted.org/packages/09/48/6388f1bb9da707110532cb70ec4d2822858ddfb44f1cdf1233c20a80ea4b/omegaconf-2.3.0.tar.gz",
"platform": null,
"description": "# OmegaConf\n| | Description |\n| --- | --- |\n| Project | [![PyPI version](https://badge.fury.io/py/omegaconf.svg)](https://badge.fury.io/py/omegaconf)[![Downloads](https://pepy.tech/badge/omegaconf/month)](https://pepy.tech/project/omegaconf?versions=1.4.*&versions=2.0.*&versions=2.1.*)![PyPI - Python Version](https://img.shields.io/pypi/pyversions/omegaconf.svg) |\n| Code quality| [![CircleCI](https://img.shields.io/circleci/build/github/omry/omegaconf?logo=s&token=5de2f8dc2a0dd78438520575431aa533150806e3)](https://circleci.com/gh/omry/omegaconf)[![Coverage Status](https://coveralls.io/repos/github/omry/omegaconf/badge.svg)](https://coveralls.io/github/omry/omegaconf)[![Total alerts](https://img.shields.io/lgtm/alerts/g/omry/omegaconf.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/omry/omegaconf/alerts/)[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/omry/omegaconf.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/omry/omegaconf/context:python)|\n| Docs and support |[![Documentation Status](https://readthedocs.org/projects/omegaconf/badge/?version=2.0_branch)](https://omegaconf.readthedocs.io/en/2.1_branch/)[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/omry/omegaconf/master?filepath=docs%2Fnotebook%2FTutorial.ipynb)|\n\n\nOmegaConf is a hierarchical configuration system, with support for merging configurations from multiple sources (YAML config files, dataclasses/objects and CLI arguments)\nproviding a consistent API regardless of how the configuration was created.\n\n## Releases\n\n### Stable (2.2)\nOmegaConf 2.2 is the current stable version.\n* [What's new](https://github.com/omry/omegaconf/releases/tag/v2.2.1)\n* [Documentation](https://omegaconf.readthedocs.io/en/2.2_branch/)\n* [Source code](https://github.com/omry/omegaconf/tree/2.2_branch)\n\nInstall with `pip install --upgrade omegaconf`\n\n### Previous release (2.1)\nOmegaConf 2.1 is the current stable version.\n* [What's new](https://github.com/omry/omegaconf/releases/tag/v2.1.1)\n* [Documentation](https://omegaconf.readthedocs.io/en/2.1_branch/)\n* [Slides](https://docs.google.com/presentation/d/e/2PACX-1vT_UIV7hCnquIbLUm4NnkUpXvPEh33IKiUEvPRF850WKA8opOlZOszjKdZ3tPmf8u7hGNP6HpqS-NT5/pub?start=false&loop=false&delayms=3000)\n* [Source code](https://github.com/omry/omegaconf/tree/2.1_branch)\n\nInstall with `pip install omegaconf==2.1`\n\n### Previous release (2.0)\n\n* [What's new](https://github.com/omry/omegaconf/releases/tag/v2.0.0)\n* [Documentation](https://omegaconf.readthedocs.io/en/2.0_branch/)\n* [Slides](https://docs.google.com/presentation/d/e/2PACX-1vT_UIV7hCnquIbLUm4NnkUpXvPEh33IKiUEvPRF850WKA8opOlZOszjKdZ3tPmf8u7hGNP6HpqS-NT5/pub?start=false&loop=false&delayms=3000)\n* [Source code](https://github.com/omry/omegaconf/tree/2.0_branch)\n\nInstall with `pip install omegaconf==2.0.6`\n\n## Live tutorial\nRun the live tutorial: [![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/omry/omegaconf/master?filepath=docs%2Fnotebook%2FTutorial.ipynb)\n",
"bugtrack_url": null,
"license": "",
"summary": "A flexible configuration library",
"version": "2.3.0",
"project_urls": {
"Homepage": "https://github.com/omry/omegaconf"
},
"split_keywords": [
"yaml",
"configuration",
"config"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "e3941843518e420fa3ed6919835845df698c7e27e183cb997394e4a670973a65",
"md5": "dbf735464e1d9ae66ad7b663ecd0a204",
"sha256": "7b4df175cdb08ba400f45cae3bdcae7ba8365db4d165fc65fd04b050ab63b46b"
},
"downloads": -1,
"filename": "omegaconf-2.3.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "dbf735464e1d9ae66ad7b663ecd0a204",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.6",
"size": 79500,
"upload_time": "2022-12-08T20:59:19",
"upload_time_iso_8601": "2022-12-08T20:59:19.686276Z",
"url": "https://files.pythonhosted.org/packages/e3/94/1843518e420fa3ed6919835845df698c7e27e183cb997394e4a670973a65/omegaconf-2.3.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09486388f1bb9da707110532cb70ec4d2822858ddfb44f1cdf1233c20a80ea4b",
"md5": "fb9f61e5ad2bd8ba99a0da8ef35ba08b",
"sha256": "d5d4b6d29955cc50ad50c46dc269bcd92c6e00f5f90d23ab5fee7bfca4ba4cc7"
},
"downloads": -1,
"filename": "omegaconf-2.3.0.tar.gz",
"has_sig": false,
"md5_digest": "fb9f61e5ad2bd8ba99a0da8ef35ba08b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.6",
"size": 3298120,
"upload_time": "2022-12-08T20:59:22",
"upload_time_iso_8601": "2022-12-08T20:59:22.753094Z",
"url": "https://files.pythonhosted.org/packages/09/48/6388f1bb9da707110532cb70ec4d2822858ddfb44f1cdf1233c20a80ea4b/omegaconf-2.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2022-12-08 20:59:22",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "omry",
"github_project": "omegaconf",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"circle": true,
"lcname": "omegaconf"
}