Files
proxy-scraper-checker/proxy_scraper_checker/constants.py
T
2023-12-26 10:09:22 +03:00

13 lines
328 B
Python

from __future__ import annotations
from types import MappingProxyType
from aiohttp import hdrs
DEFAULT_CHECK_WEBSITE = "http://ip-api.com/json/?fields=8217"
HEADERS: MappingProxyType[str, str] = MappingProxyType({
hdrs.USER_AGENT: (
"Mozilla/5.0 (Windows NT 10.0; rv:121.0) Gecko/20100101 Firefox/121.0"
)
})