예제 #1
0
파일: __init__.py 프로젝트: cpasillas/tale
 def parse(Self, file):
     xml = Tag.parse(file)
     return Self(
         width = xml['width'],
         height = xml['height'],
         groups = list(
             element
             for element in xml.tags
             if element.name == 'g'
         ),
         defs = dict(
             (element['id'], element)
             for element in xml[Name('defs')].tags
         ),
     )
예제 #2
0
파일: __init__.py 프로젝트: cpasillas/tale
def parse(file):
    return Tag.parse(file)