File: __init__.py

package info (click to toggle)
python-kajiki 1.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 700 kB
  • sloc: python: 4,098; makefile: 115
file content (20 lines) | stat: -rw-r--r-- 446 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""Kajiki public API."""

from kajiki.loader import FileLoader, MockLoader, PackageLoader
from kajiki.template import Template
from kajiki.text import TextTemplate
from kajiki.util import expose, flattener
from kajiki.xml_template import XMLTemplate

__all__ = [
    "expose",
    "flattener",
    "Template",
    "MockLoader",
    "FileLoader",
    "PackageLoader",
    "TextTemplate",
    "XMLTemplate",
    "__version__",
    "__release__",
]