OXIESEC PANEL
- Current Dir:
/
/
snap
/
core24
/
988
/
usr
/
lib
/
python3.12
/
importlib
/
resources
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/04/2025 04:37:50 PM
rwxr-xr-x
📄
__init__.py
506 bytes
02/04/2025 02:48:35 PM
rw-r--r--
📁
__pycache__
-
05/04/2025 04:37:50 PM
rwxr-xr-x
📄
_adapters.py
4.38 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
_common.py
5.33 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
_itertools.py
1.25 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
_legacy.py
3.4 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
abc.py
5.08 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
readers.py
4.2 KB
02/04/2025 02:48:35 PM
rw-r--r--
📄
simple.py
2.52 KB
02/04/2025 02:48:35 PM
rw-r--r--
Editing: __init__.py
Close
"""Read resources contained within a package.""" from ._common import ( as_file, files, Package, ) from ._legacy import ( contents, open_binary, read_binary, open_text, read_text, is_resource, path, Resource, ) from .abc import ResourceReader __all__ = [ 'Package', 'Resource', 'ResourceReader', 'as_file', 'contents', 'files', 'is_resource', 'open_binary', 'open_text', 'path', 'read_binary', 'read_text', ]