python-lottie  0.7.0+dev66cafb9
A framework to work with lottie files and telegram animated stickers (tgs)
__init__.py
Go to the documentation of this file.
1 from . import base, core, sif, svg, pretty_print
2 
3 from .base import exporters
4 from .core import export_lottie, export_tgs, export_embedded_html
5 from .pretty_print import prettyprint, prettyprint_summary
6 from .sif import export_sif
7 from .svg import export_svg
8 
9 __all__ = [
10  "base", "core", "sif", "svg", "pretty_print",
11  "exporters", "export_lottie", "export_tgs", "export_embedded_html",
12  "prettyprint", "prettyprint_summary", "export_sif", "export_svg",
13 ]
14 
15 try:
16  from . import cairo, gif
17  __all__ += ["cairo", "gif"]
18 except ImportError:
19  pass