Spaces:
Running
Running
File size: 323 Bytes
1151f26 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from urllib.parse import urljoin, urlparse
class URLUtils:
@staticmethod
def get_base_url(url: str) -> str:
parsed_url = urlparse(url)
return f"{parsed_url.scheme}://{parsed_url.netloc}"
@staticmethod
def resolve_url(src: str, base_url: str) -> str:
return urljoin(base_url, src)
|