cpython/Lib/importlib/resources/__init__.py
Mike Zimin c85c0026a6
gh-113238: add Anchor to importlib.resources (#113801)
Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
2024-01-16 10:55:59 +00:00

20 lines
252 B
Python

"""Read resources contained within a package."""
from ._common import (
as_file,
files,
Package,
Anchor,
)
from .abc import ResourceReader
__all__ = [
'Package',
'Anchor',
'ResourceReader',
'as_file',
'files',
]