mirror of
https://github.com/OpenVGLab/OmniLottie.git
synced 2026-09-17 07:36:27 +00:00
Initial Commit
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
from . import base, core, sif, svg, pretty_print
|
||||
|
||||
from .base import exporters
|
||||
from .core import export_lottie, export_tgs, export_embedded_html
|
||||
from .pretty_print import prettyprint, prettyprint_summary
|
||||
from .sif import export_sif
|
||||
from .svg import export_svg
|
||||
|
||||
__all__ = [
|
||||
"base", "core", "sif", "svg", "pretty_print",
|
||||
"exporters", "export_lottie", "export_tgs", "export_embedded_html",
|
||||
"prettyprint", "prettyprint_summary", "export_sif", "export_svg",
|
||||
]
|
||||
|
||||
try:
|
||||
from . import cairo, gif
|
||||
__all__ += ["cairo", "gif"]
|
||||
except ImportError:
|
||||
pass
|
||||
Reference in New Issue
Block a user