OXIESEC PANEL
- Current Dir:
/
/
usr
/
local
/
lib
/
python3.6
/
dist-packages
/
importlib_resources
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 06:26:52 AM
rwxrwxr-x
📄
__init__.py
525 bytes
05/09/2024 06:58:26 AM
rw-r--r--
📁
__pycache__
-
05/09/2024 06:58:27 AM
rwxr-xr-x
📄
_adapters.py
4.4 KB
05/09/2024 06:58:26 AM
rw-r--r--
📄
_common.py
2.68 KB
05/09/2024 06:58:26 AM
rw-r--r--
📄
_compat.py
2.64 KB
05/09/2024 06:58:26 AM
rw-r--r--
📄
_itertools.py
884 bytes
05/09/2024 06:58:26 AM
rw-r--r--
📄
_legacy.py
3.41 KB
05/09/2024 06:58:26 AM
rw-r--r--
📄
abc.py
3.79 KB
05/09/2024 06:58:26 AM
rw-r--r--
📄
py.typed
0 bytes
05/09/2024 06:58:26 AM
rw-r--r--
📄
readers.py
3.48 KB
05/09/2024 06:58:26 AM
rw-r--r--
📄
simple.py
2.77 KB
05/09/2024 06:58:26 AM
rw-r--r--
📁
tests
-
05/09/2024 06:58:27 AM
rwxr-xr-x
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 importlib_resources.abc import ResourceReader __all__ = [ 'Package', 'Resource', 'ResourceReader', 'as_file', 'contents', 'files', 'is_resource', 'open_binary', 'open_text', 'path', 'read_binary', 'read_text', ]