mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-05 20:51:11 -07:00
* Added Python3.12 and future 3.13 * Fix Radarr result handling * remove py2.7 and py3.7 support
17 lines
226 B
Python
17 lines
226 B
Python
"""Read resources contained within a package."""
|
|
|
|
from ._common import (
|
|
as_file,
|
|
files,
|
|
Package,
|
|
)
|
|
|
|
from .abc import ResourceReader
|
|
|
|
|
|
__all__ = [
|
|
'Package',
|
|
'ResourceReader',
|
|
'as_file',
|
|
'files',
|
|
]
|