mirror of
https://github.com/dgelessus/python-rsrcfork.git
synced 2024-11-05 12:05:26 +00:00
19 lines
433 B
Python
19 lines
433 B
Python
"""A pure Python, cross-platform library/tool for reading Macintosh resource data, as stored in resource forks and ``.rsrc`` files."""
|
|
|
|
__version__ = "1.2.1.dev"
|
|
|
|
__all__ = [
|
|
"Resource",
|
|
"ResourceAttrs",
|
|
"ResourceFile",
|
|
"ResourceFileAttrs",
|
|
"compress",
|
|
"open",
|
|
]
|
|
|
|
from . import api, compress
|
|
from .api import Resource, ResourceAttrs, ResourceFile, ResourceFileAttrs
|
|
|
|
# noinspection PyShadowingBuiltins
|
|
open = ResourceFile.open
|