Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dgelessus/python-rezparser
A pure Python library for parsing Macintosh Rez source files
https://github.com/dgelessus/python-rezparser
classic-mac-os macintosh parser python resource-fork rez
Last synced: 3 days ago
JSON representation
A pure Python library for parsing Macintosh Rez source files
- Host: GitHub
- URL: https://github.com/dgelessus/python-rezparser
- Owner: dgelessus
- License: mit
- Created: 2017-04-27T18:39:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-17T09:42:06.000Z (over 7 years ago)
- Last Synced: 2024-10-31T09:27:47.739Z (14 days ago)
- Topics: classic-mac-os, macintosh, parser, python, resource-fork, rez
- Language: Python
- Size: 4.13 MB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
``rezparser``
=============A pure Python library for parsing Macintosh Rez source files, which are used by the legacy ``Rez`` and ``DeRez`` tools to compile, modify and decompile Macintosh resource fork data.
Requirements
------------Python 3.6 or later, as well as `PLY`__ (tested with version 3.10, but older and newer versions probably work too).
__ https://pypi.python.org/pypi/ply
Installation
------------``rezparser`` is available `on PyPI`__ and can be installed using ``pip``:
.. code-block:: sh
python3 -m pip install rezparser
Alternatively you can install a local copy:
.. code-block:: sh
python3 -m pip install -e .
__ https://pypi.python.org/pypi/rsrcfork
Changelog
---------Version 1.0.0
`````````````* Initial release version