OXIESEC PANEL
- Current Dir:
/
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
idna
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/05/2025 09:34:06 AM
rwxr-xr-x
📄
__init__.py
849 bytes
12/18/2024 10:23:16 AM
rw-r--r--
📁
__pycache__
-
02/07/2025 10:01:50 PM
rwxr-xr-x
📄
codec.py
3.29 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
compat.py
321 bytes
12/18/2024 10:23:16 AM
rw-r--r--
📄
core.py
12.65 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
idnadata.py
43.33 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
intranges.py
1.84 KB
12/18/2024 10:23:16 AM
rw-r--r--
📄
package_data.py
21 bytes
12/18/2024 10:23:16 AM
rw-r--r--
📄
py.typed
0 bytes
12/18/2024 10:23:16 AM
rw-r--r--
📄
uts46data.py
201.7 KB
12/18/2024 10:23:16 AM
rw-r--r--
Editing: compat.py
Close
from .core import * from .codec import * from typing import Any, Union def ToASCII(label: str) -> bytes: return encode(label) def ToUnicode(label: Union[bytes, bytearray]) -> str: return decode(label) def nameprep(s: Any) -> None: raise NotImplementedError('IDNA 2008 does not utilise nameprep protocol')