python-rsrcfork/rsrcfork/__init__.py

19 lines
433 B
Python
Raw Normal View History

"""A pure Python, cross-platform library/tool for reading Macintosh resource data, as stored in resource forks and ``.rsrc`` files."""
2018-02-12 21:48:46 +00:00
2019-09-16 14:46:17 +00:00
__version__ = "1.3.1.dev"
2018-02-12 21:48:46 +00:00
__all__ = [
"Resource",
"ResourceAttrs",
"ResourceFile",
"ResourceFileAttrs",
"compress",
2018-02-12 21:48:46 +00:00
"open",
]
from . import api, compress
2018-02-12 21:48:46 +00:00
from .api import Resource, ResourceAttrs, ResourceFile, ResourceFileAttrs
# noinspection PyShadowingBuiltins
open = ResourceFile.open