Current Path: > > opt > alt > python33 > lib > > > python3.3 > site-packages > pip > _vendor > requests
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
packages | Directory | - | - | |
__init__.py | File | 1856 bytes | November 13 2023 21:16:39. | |
adapters.py | File | 14608 bytes | November 13 2023 21:16:39. | |
api.py | File | 4344 bytes | November 13 2023 21:16:39. | |
auth.py | File | 6123 bytes | November 13 2023 21:16:39. | |
cacert.pem | File | 308434 bytes | November 13 2023 21:16:39. | |
certs.py | File | 544 bytes | November 13 2023 21:16:39. | |
compat.py | File | 2556 bytes | November 13 2023 21:16:39. | |
cookies.py | File | 16686 bytes | November 13 2023 21:16:39. | |
exceptions.py | File | 1877 bytes | November 13 2023 21:16:39. | |
hooks.py | File | 820 bytes | November 13 2023 21:16:39. | |
models.py | File | 26436 bytes | November 13 2023 21:16:39. | |
sessions.py | File | 22290 bytes | November 13 2023 21:16:39. | |
status_codes.py | File | 3136 bytes | November 13 2023 21:16:39. | |
structures.py | File | 3541 bytes | November 13 2023 21:16:39. | |
utils.py | File | 19973 bytes | November 13 2023 21:16:39. |
# -*- coding: utf-8 -*- """ requests.exceptions ~~~~~~~~~~~~~~~~~~~ This module contains the set of Requests' exceptions. """ from .packages.urllib3.exceptions import HTTPError as BaseHTTPError class RequestException(IOError): """There was an ambiguous exception that occurred while handling your request.""" def __init__(self, *args, **kwargs): """ Initialize RequestException with `request` and `response` objects. """ response = kwargs.pop('response', None) self.response = response self.request = kwargs.pop('request', None) if (response is not None and not self.request and hasattr(response, 'request')): self.request = self.response.request super(RequestException, self).__init__(*args, **kwargs) class HTTPError(RequestException): """An HTTP error occurred.""" class ConnectionError(RequestException): """A Connection error occurred.""" class ProxyError(ConnectionError): """A proxy error occurred.""" class SSLError(ConnectionError): """An SSL error occurred.""" class Timeout(RequestException): """The request timed out.""" class URLRequired(RequestException): """A valid URL is required to make a request.""" class TooManyRedirects(RequestException): """Too many redirects.""" class MissingSchema(RequestException, ValueError): """The URL schema (e.g. http or https) is missing.""" class InvalidSchema(RequestException, ValueError): """See defaults.py for valid schemas.""" class InvalidURL(RequestException, ValueError): """ The URL provided was somehow invalid. """ class ChunkedEncodingError(RequestException): """The server declared chunked encoding but sent an invalid chunk.""" class ContentDecodingError(RequestException, BaseHTTPError): """Failed to decode response content"""
SILENT KILLER Tool