Source code for aioproxyline.types.enum
from enum import Enum
from typing import Union
[docs]class ProxyFormat(str, Enum):
HTTP = 'txt-http'
SOCKS5 = 'txt-socks5'
CUSTOM_HTTP = 'custom-http'
CUSTOM_SOCKS5 = 'custom-socks5'