Httpx Client

Description of parent class of all http client

class async_couch.http_clients.HttpxCouchClient(*, auth: Union[Tuple[Union[str, bytes], Union[str, bytes]], Callable[[Request], Request], Auth] = None, params: Union[QueryParams, Mapping[str, Union[str, int, float, bool, None, Sequence[Union[str, int, float, bool, None]]]], List[Tuple[str, Union[str, int, float, bool, None]]], str] = None, headers: Union[Headers, Dict[AnyStr, AnyStr], List[Tuple[AnyStr, AnyStr]]] = None, cookies: Union[Cookies, http.cookiejar.CookieJar, Dict[str, str]] = None, verify: Union[str, bool, ssl.SSLContext] = True, cert: Union[str, Tuple[str, str], Tuple[str, str, str]] = None, http2: bool = False, proxies: Union[URL, str, Proxy, Dict[Union[URL, str], Union[URL, str, Proxy]]] = None, timeout: Union[None, float, Tuple[float, float, float, float], Timeout] = Timeout(timeout=5.0), pool_limits: httpx._config.PoolLimits = PoolLimits(soft_limit=10, hard_limit=100), max_redirects: int = 20, base_url: Union[URL, str] = None, dispatch: httpx._dispatch.base.AsyncDispatcher = None, app: Callable = None, trust_env: bool = True, uds: str = None)