https://github.com/ahuge/ase_parser
Adobe Swatch Exchange file format parser written using the python construct library.
https://github.com/ahuge/ase_parser
adobe adobe-swatch-exchange ase binary-parser construct python
Last synced: 6 months ago
JSON representation
Adobe Swatch Exchange file format parser written using the python construct library.
- Host: GitHub
- URL: https://github.com/ahuge/ase_parser
- Owner: Ahuge
- Created: 2018-01-05T23:59:04.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-06T00:09:21.000Z (about 8 years ago)
- Last Synced: 2025-03-14T23:43:42.555Z (11 months ago)
- Topics: adobe, adobe-swatch-exchange, ase, binary-parser, construct, python
- Language: Python
- Size: 4.88 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ase_parser
[Adobe Swatch Exchange](https://www.lifewire.com/ase-file-2619688) file format parser written using the python [construct library](https://construct.readthedocs.io/en/latest/).
## 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.
```python
import os
from ase_parse import parse
myfile = "theme.ase"
struct = parse(myfile)
print(struct)
```
## Dependencies:
- construct
`pip install construct`