OXIESEC PANEL
- Current Dir:
/
/
snap
/
core24
/
988
/
usr
/
lib
/
python3
/
dist-packages
/
idna
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
849 bytes
05/10/2024 08:55:01 AM
rw-r--r--
📁
__pycache__
-
05/04/2025 04:37:50 PM
rwxr-xr-x
📄
codec.py
3.35 KB
05/10/2024 08:55:01 AM
rw-r--r--
📄
compat.py
321 bytes
05/10/2024 08:55:01 AM
rw-r--r--
📄
core.py
12.47 KB
05/10/2024 08:55:01 AM
rw-r--r--
📄
idnadata.py
76.48 KB
05/10/2024 08:55:01 AM
rw-r--r--
📄
intranges.py
1.84 KB
05/10/2024 08:55:01 AM
rw-r--r--
📄
package_data.py
21 bytes
05/10/2024 08:55:01 AM
rw-r--r--
📄
py.typed
0 bytes
05/10/2024 08:55:01 AM
rw-r--r--
📄
uts46data.py
201.66 KB
05/10/2024 08:55:01 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')