初始提交,未完全测试

This commit is contained in:
2026-02-27 14:37:10 +08:00
parent 76c0f469be
commit e270f02073
68 changed files with 5886 additions and 0 deletions

36
__init__.py Normal file
View File

@@ -0,0 +1,36 @@
#!/usr/bin/env python3.9
# -*- coding: utf-8 -*-
"""
py_enjoy - Python implementation of JFinal Template Engine
"""
__version__ = "5.2.2"
__author__ = "James Zhan 詹波 (original), Python port by mrzhou@miw.cn"
__license__ = "Apache License 2.0"
# Export main classes
from .kit.StrKit import StrKit
from .kit.HashKit import HashKit
from .kit.Kv import Kv
from .kit.Okv import Okv
from .kit.Prop import Prop
from .kit.PropKit import PropKit
from .kit.TypeKit import TypeKit
from .kit.TimeKit import TimeKit
from .template.Engine import Engine
from .template.Template import Template
from .template.Directive import Directive
__all__ = [
"StrKit",
"HashKit",
"Kv",
"Okv",
"Prop",
"PropKit",
"TypeKit",
"TimeKit",
"Engine",
"Template",
"Directive",
]