class documentation

class AsyncHTTPTransport(AsyncBaseTransport): (source)

View In Hierarchy

Undocumented

Async Method __aenter__ Undocumented
Async Method __aexit__ Undocumented
Method __init__ Undocumented
Async Method aclose Undocumented
Async Method handle_async_request Undocumented
Instance Variable _pool Undocumented
async def __aenter__(self): (source)

Undocumented

Returns
AUndocumented
async def __aexit__(self, exc_type=None, exc_value=None, traceback=None): (source)

Undocumented

Parameters
exc_type:typing.Optional[typing.Type[BaseException]]Undocumented
exc_value:typing.Optional[BaseException]Undocumented
traceback:typing.Optional[TracebackType]Undocumented
def __init__(self, verify=True, cert=None, http1=True, http2=False, limits=DEFAULT_LIMITS, trust_env=True, proxy=None, uds=None, local_address=None, retries=0): (source)

Undocumented

Parameters
verify:VerifyTypesUndocumented
cert:typing.Optional[CertTypes]Undocumented
http1:boolUndocumented
http2:boolUndocumented
limits:LimitsUndocumented
trust_env:boolUndocumented
proxy:typing.Optional[Proxy]Undocumented
uds:typing.Optional[str]Undocumented
local_address:typing.Optional[str]Undocumented
retries:intUndocumented
async def aclose(self): (source)

Undocumented

async def handle_async_request(self, request): (source)

Undocumented

Parameters
request:RequestUndocumented
Returns
ResponseUndocumented

Undocumented