| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/lib/python3/dist-packages/httplib2-stubs/ |
Upload File : |
import socket
from _typeshed import Incomplete
PROXY_TYPE_SOCKS4: int
PROXY_TYPE_SOCKS5: int
PROXY_TYPE_HTTP: int
PROXY_TYPE_HTTP_NO_TUNNEL: int
class ProxyError(Exception): ...
class GeneralProxyError(ProxyError): ...
class Socks5AuthError(ProxyError): ...
class Socks5Error(ProxyError): ...
class Socks4Error(ProxyError): ...
class HTTPError(ProxyError): ...
def setdefaultproxy(
proxytype: Incomplete | None = None,
addr: Incomplete | None = None,
port: Incomplete | None = None,
rdns: bool = True,
username: Incomplete | None = None,
password: Incomplete | None = None,
) -> None: ...
def wrapmodule(module) -> None: ...
class socksocket(socket.socket):
def __init__(self, family=..., type=..., proto: int = 0, _sock: Incomplete | None = None) -> None: ...
def sendall(self, content, *args): ...
def setproxy(
self,
proxytype: Incomplete | None = None,
addr: Incomplete | None = None,
port: Incomplete | None = None,
rdns: bool = True,
username: Incomplete | None = None,
password: Incomplete | None = None,
headers: Incomplete | None = None,
) -> None: ...
def getproxysockname(self): ...
def getproxypeername(self): ...
def getpeername(self): ...
def connect(self, destpair) -> None: ...