__init__.py 580 B

1234567891011121314151617181920
  1. """Template package for template and variable management.
  2. This package provides Template, VariableCollection, VariableSection, and Variable
  3. classes for managing templates and their variables.
  4. """
  5. from .template import Template, TemplateErrorHandler, TemplateFile, TemplateMetadata
  6. from .variable import Variable
  7. from .variable_collection import VariableCollection
  8. from .variable_section import VariableSection
  9. __all__ = [
  10. "Template",
  11. "TemplateErrorHandler",
  12. "TemplateFile",
  13. "TemplateMetadata",
  14. "Variable",
  15. "VariableCollection",
  16. "VariableSection",
  17. ]