from urllib.parse import urlparse def is_absolute_url(url): return bool(urlparse(url).netloc)