mirror of
https://github.com/OpenVGLab/OmniLottie.git
synced 2026-09-16 23:26:26 +00:00
8 lines
193 B
Python
8 lines
193 B
Python
from ..tgs import open_maybe_gzipped
|
|
|
|
|
|
def parse_sif_file(file):
|
|
from .converter import convert
|
|
from . import api
|
|
return convert(open_maybe_gzipped(file, api.Canvas.from_xml_file))
|