Qucs-S S-parameter Viewer & RF Synthesis Tools
Loading...
Searching...
No Matches
Public Member Functions | List of all members
pip._vendor.requests.adapters.BaseAdapter Class Reference
Inheritance diagram for pip._vendor.requests.adapters.BaseAdapter:
Inheritance graph
[legend]

Public Member Functions

 __init__ (self)
 
 send (self, request, stream=False, timeout=None, verify=True, cert=None, proxies=None)
 
 close (self)
 

Detailed Description

The Base Transport Adapter

Member Function Documentation

◆ close()

pip._vendor.requests.adapters.BaseAdapter.close (   self)

◆ send()

pip._vendor.requests.adapters.BaseAdapter.send (   self,
  request,
  stream = False,
  timeout = None,
  verify = True,
  cert = None,
  proxies = None 
)
Sends PreparedRequest object. Returns Response object.

:param request: The :class:`PreparedRequest <PreparedRequest>` being sent.
:param stream: (optional) Whether to stream the request content.
:param timeout: (optional) How long to wait for the server to send
    data before giving up, as a float, or a :ref:`(connect timeout,
    read timeout) <timeouts>` tuple.
:type timeout: float or tuple
:param verify: (optional) Either a boolean, in which case it controls whether we verify
    the server's TLS certificate, or a string, in which case it must be a path
    to a CA bundle to use
:param cert: (optional) Any user-provided SSL certificate to be trusted.
:param proxies: (optional) The proxies dictionary to apply to the request.

Reimplemented in pip._vendor.cachecontrol.adapter.CacheControlAdapter, and pip._vendor.requests.adapters.HTTPAdapter.


The documentation for this class was generated from the following file: