Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
draccus / options.py
Size: Mime:
import contextlib
from typing import Union

from draccus.parsers.config_parsers import JSONParser, ParserEnum, TOMLParser, YAMLParser


class ConfigType(ParserEnum):
    YAML = YAMLParser
    JSON = JSONParser
    TOML = TOMLParser


class Options:
    _config_type: ConfigType = ConfigType.YAML

    @staticmethod
    def set_config_type(new_type: Union[ConfigType, str]):
        if isinstance(new_type, str):
            new_type = ConfigType[new_type.upper()]
        Options._config_type = new_type

    @staticmethod
    def get_config_type() -> ConfigType:
        return Options._config_type


@contextlib.contextmanager
def config_type(new_type: Union[ConfigType, str]):
    current_type = Options.get_config_type()
    try:
        Options.set_config_type(new_type)
        yield
    finally:
        Options.set_config_type(current_type)