Linux jobworks 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:53:05 UTC 2026 x86_64
Apache/2.4.58 (Ubuntu)
Server IP : 10.0.1.5 & Your IP : 216.73.217.52
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
mdurl /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-08-05 17:02
__init__.py
547
B
-rw-r--r--
2022-10-17 20:23
_decode.py
2.93
KB
-rw-r--r--
2022-10-17 20:23
_encode.py
2.54
KB
-rw-r--r--
2022-10-17 20:23
_format.py
626
B
-rw-r--r--
2022-10-17 20:23
_parse.py
11.11
KB
-rw-r--r--
2022-10-17 20:23
_url.py
284
B
-rw-r--r--
2022-10-17 20:23
py.typed
26
B
-rw-r--r--
2022-10-17 20:23
Save
Rename
from __future__ import annotations from typing import TYPE_CHECKING if TYPE_CHECKING: from mdurl._url import URL def format(url: URL) -> str: # noqa: A001 result = "" result += url.protocol or "" result += "//" if url.slashes else "" result += url.auth + "@" if url.auth else "" if url.hostname and ":" in url.hostname: # ipv6 address result += "[" + url.hostname + "]" else: result += url.hostname or "" result += ":" + url.port if url.port else "" result += url.pathname or "" result += url.search or "" result += url.hash or "" return result