PATH: //proc/thread-self/root/opt/cloudlinux/venv/lib/python3.11/site-packages/wmt/common
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __init__.py
↓
X
📁 __pycache__/
X
📄 config.py
↓
X
📄 const.py
↓
X
📄 exceptions.py
↓
X
📄 notification.py
↓
X
📄 report.py
↓
X
📄 service.py
↓
X
📄 url_parser.py
↓
X
📄 utils.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: url_parser.py
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()
SIMPAN PERUBAHAN