OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
hps
/
faces
/
.venv
/
lib
/
python3.10
/
site-packages
/
pip
/
_vendor
/
idna
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/26/2024 01:28:01 PM
rwxr-xr-x
📄
__init__.py
849 bytes
10/26/2024 01:27:54 PM
rw-r--r--
📁
__pycache__
-
10/26/2024 01:29:08 PM
rwxr-xr-x
📄
codec.py
3.29 KB
10/26/2024 01:27:54 PM
rw-r--r--
📄
compat.py
321 bytes
10/26/2024 01:27:54 PM
rw-r--r--
📄
core.py
12.65 KB
10/26/2024 01:27:54 PM
rw-r--r--
📄
idnadata.py
43.33 KB
10/26/2024 01:27:54 PM
rw-r--r--
📄
intranges.py
1.84 KB
10/26/2024 01:27:54 PM
rw-r--r--
📄
package_data.py
21 bytes
10/26/2024 01:27:54 PM
rw-r--r--
📄
uts46data.py
201.7 KB
10/26/2024 01:27:54 PM
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')