Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
python3.11 /
dist-packages /
h5py /
_hl /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
__init__.py
457
B
-rw-r--r--
2025-04-08 17:01
attrs.py
9.98
KB
-rw-r--r--
2025-04-08 17:01
base.py
15.26
KB
-rw-r--r--
2025-04-08 17:01
compat.py
1.57
KB
-rw-r--r--
2025-04-08 17:01
dataset.py
41.91
KB
-rw-r--r--
2025-04-08 17:01
datatype.py
1.51
KB
-rw-r--r--
2025-04-08 17:01
dims.py
4.99
KB
-rw-r--r--
2025-04-08 17:01
files.py
24.79
KB
-rw-r--r--
2025-04-08 17:01
filters.py
14.23
KB
-rw-r--r--
2025-04-08 17:01
group.py
29.89
KB
-rw-r--r--
2025-04-08 17:01
selections.py
14.14
KB
-rw-r--r--
2025-04-08 17:01
selections2.py
2.66
KB
-rw-r--r--
2025-04-08 17:01
vds.py
9.16
KB
-rw-r--r--
2025-04-08 17:01
Save
Rename
""" Compatibility module for high-level h5py """ import sys from os import fspath, fsencode, fsdecode from ..version import hdf5_built_version_tuple # HDF5 supported passing paths as UTF-8 for Windows from 1.10.6, but this # was broken again in 1.14.4 - https://github.com/HDFGroup/hdf5/issues/5037 . # The change was reverted in 1.14.6. if (1, 14, 4) <= hdf5_built_version_tuple < (1, 14, 6): WINDOWS_ENCODING = "mbcs" else: WINDOWS_ENCODING = "utf-8" def filename_encode(filename): """ Encode filename for use in the HDF5 library. Due to how HDF5 handles filenames on different systems, this should be called on any filenames passed to the HDF5 library. See the documentation on filenames in h5py for more information. """ filename = fspath(filename) if sys.platform == "win32": if isinstance(filename, str): return filename.encode(WINDOWS_ENCODING, "strict") return filename return fsencode(filename) def filename_decode(filename): """ Decode filename used by HDF5 library. Due to how HDF5 handles filenames on different systems, this should be called on any filenames passed from the HDF5 library. See the documentation on filenames in h5py for more information. """ if sys.platform == "win32": if isinstance(filename, bytes): return filename.decode(WINDOWS_ENCODING, "strict") elif isinstance(filename, str): return filename else: raise TypeError("expect bytes or str, not %s" % type(filename).__name__) return fsdecode(filename)