python-lottie  0.7.0+dev351ce82
A framework to work with lottie files and telegram animated stickers (tgs)
importer.py
Go to the documentation of this file.
1 from ..tgs import open_maybe_gzipped
2 
3 
4 def parse_sif_file(file):
5  from .converter import convert
6  from . import api
7  return convert(open_maybe_gzipped(file, api.Canvas.from_xml_file))
def convert(rifx, comp, expressions)
Definition: aep.py:21
def open_maybe_gzipped(file, on_open)
Definition: tgs.py:14