python-lottie  0.7.0+dev351ce82
A framework to work with lottie files and telegram animated stickers (tgs)
__init__.py
Go to the documentation of this file.
1 """!
2 Package with all the Lottie Python bindings
3 """
4 from . import (
5  animation, base, effects, enums, helpers, layers, shapes, assets, easing,
6  text, bezier, composition, styles
7 )
8 from .animation import Animation
9 from .layers import *
10 from .shapes import *
11 from .styles import *
12 from .assets import Precomp, Image, Asset, FileAsset
13 from .bezier import Bezier
14 from .composition import Composition
15 
16 __all__ = [
17  "animation", "base", "effects", "enums", "helpers", "layers", "shapes", "assets",
18  "easing", "text", "bezier", "styles",
19  "Animation",
20  "NullLayer", "TextLayer", "ShapeLayer", "ImageLayer", "PreCompLayer", "SolidColorLayer",
21  "Rect", "Fill", "Trim", "Repeater", "GradientFill", "Stroke", "RoundedCorners", "Path",
22  "TransformShape", "Group", "Star", "Ellipse", "Merge", "GradientStroke",
23  "Bezier", "Precomp", "Composition", "Image", "Asset", "FileAsset", "LayerStyle"
24 ]