Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 504 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 504 Bytes

ase_parser

Adobe Swatch Exchange file format parser written using the python construct library.

Usage:

This is no setup much like a library, instead as a code snippet that you can grab.
View the file test.py to see it's usage.

import os

from ase_parse import parse

myfile = "theme.ase"
struct = parse(myfile)

print(struct)

Dependencies:

  • construct
    pip install construct