human_requests.abstraction.proxy_manager¶
Attributes¶
Classes¶
Unified proxy representation: |
Module Contents¶
- class ParsedProxy[source]¶
Unified proxy representation: - scheme: http | https | socks5 | socks5h | … - host: example.com - port: 8080 (or None) - username/password: may be None
- classmethod from_any(value: ProxyInput) ParsedProxy | None [source]¶
Supports: - URL string: http://user:pass@host:port, socks5://host:1080, … - dict: {“server”: “…”, “username”: “…”, “password”: “…”} If credentials conflict: URL takes precedence over dict fields.