module documentation

requests.exceptions ~~~~~~~~~~~~~~~~~~~ This module contains the set of Requests' exceptions.

Exception ChunkedEncodingError The server declared chunked encoding but sent an invalid chunk.
Exception ConnectionError A Connection error occurred.
Exception ConnectTimeout The request timed out while trying to connect to the remote server.
Exception ContentDecodingError Failed to decode response content.
Exception FileModeWarning A file was opened in text mode, but Requests determined its binary length.
Exception HTTPError An HTTP error occurred.
Exception InvalidHeader The header value provided was somehow invalid.
Exception InvalidJSONError A JSON error occurred.
Exception InvalidProxyURL The proxy URL provided is invalid.
Exception InvalidSchema The URL scheme provided is either invalid or unsupported.
Exception InvalidURL The URL provided was somehow invalid.
Exception JSONDecodeError Couldn't decode the text into json
Exception MissingSchema The URL scheme (e.g. http or https) is missing.
Exception ProxyError A proxy error occurred.
Exception ReadTimeout The server did not send any data in the allotted amount of time.
Exception RequestException There was an ambiguous exception that occurred while handling your request.
Exception RequestsDependencyWarning An imported dependency doesn't match the expected version range.
Exception RequestsWarning Base warning for Requests.
Exception RetryError Custom retries logic failed
Exception SSLError An SSL error occurred.
Exception StreamConsumedError The content for this response was already consumed.
Exception Timeout The request timed out.
Exception TooManyRedirects Too many redirects.
Exception UnrewindableBodyError Requests encountered an error when trying to rewind a body.
Exception URLRequired A valid URL is required to make a request.