Metadata-Version: 2.1
Name: python-schematized-config
Version: 0.0.1
Summary: validate configs using json schema
Home-page: https://github.com/aistriketeam/python-schematized-config
Author: tutankalex
Author-email: 109660532+tutankalex@users.noreply.github.com
License: Apache Software License 2.0
Keywords: nbdev jupyter notebook python
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: jsonschema (>=4.17.3)
Requires-Dist: python-dotenv (>=1.0.0)
Provides-Extra: dev

schematized config
================

<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->

## Install

``` sh
pip install python_schematized_config
```

## How to use

``` python
from schematized_config.core import ConfigValidator
```

``` python
import os
import os.path as _p

if _p.exists('.env') and 'CONFIG_VALIDATOR_JSON_SCHEMA' in os.environ:
    ConfigValidator.load_dotenv()  # use defaults of .env and CONFIG_VALIDATOR_JSON_SCHEMA
```
