Skip to main content

pydantic loader module.

Project description

Code style: black codecov

PyConfig

Configuration management using pydantic and a bit of sugar.

This library provides a load and save functions to load and save serialized pydantic settings. Settings can be saved in .json, .yaml and .toml format.

Installation

pip install pydantic_loader for loading and saving json files.

pip install pydantic_loader[yaml] for loading and saving yaml and json files.

pip install pydantic_loader[toml] for loading and saving toml and json.

"""Simple example."""
from pathlib import Path

from pydantic_loader import load_json, save_json
from pydantic import BaseSettings


class DummyConfig(BaseSettings):
    """An app configuration class"""

    a: int = 1
    b: str = "ABC"


config = DummyConfig()

save_json(config, Path("config.json"))

config = load_json(DummyConfig, Path("config.json"))

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydantic_loader-0.9.1.tar.gz (9.4 kB view hashes)

Uploaded Source

Built Distribution

pydantic_loader-0.9.1-py3-none-any.whl (6.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page