Source code for pyexlatex.models.references.bibtex.style.manager

from pyexlatex.models.references.bibtex.style.builtin_styles import BUILTIN_STYLES
from pyexlatex.models.references.bibtex.style.custom import CUSTOM_STYLES
from pyexlatex.models.references.bibtex.style.style import Style

[docs]class StyleManager:
[docs] def __init__(self): pass
[docs] def get_style_by_name(self, name: str) -> Style: if self.is_builtin_style(name): return BUILTIN_STYLES[name] if self.is_custom_style(name): return CUSTOM_STYLES[name] raise NoSuchStyleException
[docs] def is_custom_style(self, name: str) -> bool: return name in CUSTOM_STYLES
[docs] def is_builtin_style(self, name: str) -> bool: return name in BUILTIN_STYLES
[docs]class NoSuchStyleException(Exception): pass