OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python311
/
lib
/
python3.11
/
site-packages
/
pip
/
_vendor
/
idna
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/08/2024 06:29:58 PM
rwxr-xr-x
📄
__init__.py
849 bytes
11/13/2023 10:00:31 PM
rw-r--r--
📁
__pycache__
-
05/08/2024 06:29:58 PM
rwxr-xr-x
📄
codec.py
3.37 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
compat.py
360 bytes
11/13/2023 10:00:31 PM
rw-r--r--
📄
core.py
12.53 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
idnadata.py
41.36 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
intranges.py
1.89 KB
11/13/2023 10:00:31 PM
rw-r--r--
📄
package_data.py
21 bytes
11/13/2023 10:00:31 PM
rw-r--r--
📄
uts46data.py
197.12 KB
11/13/2023 10:00:31 PM
rw-r--r--
Editing: compat.py
Close
from .core import * from .codec import * from typing import Any, Union def ToASCII(label): # type: (str) -> bytes return encode(label) def ToUnicode(label): # type: (Union[bytes, bytearray]) -> str return decode(label) def nameprep(s): # type: (Any) -> None raise NotImplementedError('IDNA 2008 does not utilise nameprep protocol')