Files
proxy-scraper-checker/proxy_scraper_checker/utils.py
T

13 lines
323 B
Python
Raw Normal View History

2024-01-21 17:45:01 +00:00
from __future__ import annotations
from functools import cache
from pathlib import Path
2024-01-21 17:45:01 +00:00
from urllib.parse import urlparse
is_docker = cache(Path("/.dockerenv").exists)
2024-02-01 07:24:26 +00:00
2024-01-21 17:45:01 +00:00
def is_http_url(value: str, /) -> bool:
2024-01-21 17:45:01 +00:00
parsed_url = urlparse(value)
return bool(parsed_url.scheme in {"http", "https"} and parsed_url.netloc)