| """ |
| requests.models |
| ~~~~~~~~~~~~~~~ |
| |
| This module contains the primary objects that power Requests. |
| """ |
|
|
| from __future__ import annotations |
|
|
| import datetime |
|
|
| |
| |
| |
| import encodings.idna |
| from collections.abc import Callable, Generator, Iterable, Iterator, Mapping |
| from io import UnsupportedOperation |
| from typing import ( |
| TYPE_CHECKING, |
| Any, |
| Final, |
| Literal, |
| cast, |
| overload, |
| ) |
|
|
| from urllib3.exceptions import ( |
| DecodeError, |
| LocationParseError, |
| ProtocolError, |
| ReadTimeoutError, |
| SSLError, |
| ) |
| from urllib3.fields import RequestField |
| from urllib3.filepost import encode_multipart_formdata |
| from urllib3.util import parse_url |
|
|
| from ._internal_utils import to_native_string, unicode_is_ascii |
| from ._types import SupportsRead as _SupportsRead |
| from .auth import HTTPBasicAuth |
| from .compat import ( |
| JSONDecodeError, |
| basestring, |
| builtin_str, |
| chardet, |
| cookielib, |
| urlencode, |
| urlsplit, |
| urlunparse, |
| ) |
| from .compat import json as complexjson |
| from .cookies import ( |
| _copy_cookie_jar, |
| cookiejar_from_dict, |
| get_cookie_header, |
| ) |
| from .exceptions import ( |
| ChunkedEncodingError, |
| ConnectionError, |
| ContentDecodingError, |
| HTTPError, |
| InvalidJSONError, |
| InvalidURL, |
| MissingSchema, |
| StreamConsumedError, |
| ) |
| from .exceptions import JSONDecodeError as RequestsJSONDecodeError |
| from .exceptions import SSLError as RequestsSSLError |
| from .hooks import default_hooks |
| from .status_codes import codes |
| from .structures import CaseInsensitiveDict |
| from .utils import ( |
| check_header_validity, |
| get_auth_from_url, |
| guess_filename, |
| guess_json_utf, |
| iter_slices, |
| parse_header_links, |
| requote_uri, |
| stream_decode_response_unicode, |
| super_len, |
| to_key_val_list, |
| ) |
|
|
| if TYPE_CHECKING: |
| from http.cookiejar import CookieJar |
|
|
| from typing_extensions import Self |
|
|
| from . import _types as _t |
| from .adapters import HTTPAdapter |
| from .cookies import RequestsCookieJar |
|
|
| |
| |
| REDIRECT_STATI: Final[tuple[int, ...]] = ( |
| codes.moved, |
| codes.found, |
| codes.other, |
| codes.temporary_redirect, |
| codes.permanent_redirect, |
| ) |
|
|
| DEFAULT_REDIRECT_LIMIT: int = 30 |
| CONTENT_CHUNK_SIZE: int = 10 * 1024 |
| ITER_CHUNK_SIZE: int = 512 |
|
|
|
|
| class RequestEncodingMixin: |
| url: str | None |
|
|
| @property |
| def path_url(self) -> str: |
| """Build the path URL to use.""" |
|
|
| url: list[str] = [] |
|
|
| p = urlsplit(cast(str, self.url)) |
|
|
| path = p.path |
| if not path: |
| path = "/" |
|
|
| url.append(path) |
|
|
| query = p.query |
| if query: |
| url.append("?") |
| url.append(query) |
|
|
| return "".join(url) |
|
|
| @overload |
| @staticmethod |
| def _encode_params(data: str) -> str: ... |
|
|
| @overload |
| @staticmethod |
| def _encode_params(data: bytes) -> bytes: ... |
|
|
| @overload |
| @staticmethod |
| def _encode_params( |
| data: _t.SupportsRead[str | bytes], |
| ) -> _t.SupportsRead[str | bytes]: ... |
|
|
| @overload |
| @staticmethod |
| def _encode_params(data: _t.KVDataType) -> str: ... |
|
|
| @staticmethod |
| def _encode_params( |
| data: _t.EncodableDataType, |
| ) -> str | bytes | _t.SupportsRead[str | bytes]: |
| """Encode parameters in a piece of data. |
| |
| Will successfully encode parameters when passed as a dict or a list of |
| 2-tuples. Order is retained if data is a list of 2-tuples but arbitrary |
| if parameters are supplied as a dict. |
| """ |
|
|
| if isinstance(data, (str, bytes)): |
| return data |
| elif isinstance(data, _SupportsRead): |
| return data |
| elif hasattr(data, "__iter__"): |
| result: list[tuple[bytes, bytes]] = [] |
| for k, vs in to_key_val_list(data): |
| if isinstance(vs, basestring) or not hasattr(vs, "__iter__"): |
| vs = [vs] |
| for v in vs: |
| if v is not None: |
| result.append( |
| ( |
| k.encode("utf-8") if isinstance(k, str) else k, |
| v.encode("utf-8") if isinstance(v, str) else v, |
| ) |
| ) |
| return urlencode(result, doseq=True) |
| else: |
| return data |
|
|
| @staticmethod |
| def _encode_files( |
| files: _t.FilesType, data: _t.RawDataType | None |
| ) -> tuple[bytes, str]: |
| """Build the body for a multipart/form-data request. |
| |
| Will successfully encode files when passed as a dict or a list of |
| tuples. Order is retained if data is a list of tuples but arbitrary |
| if parameters are supplied as a dict. |
| The tuples may be 2-tuples (filename, fileobj), 3-tuples (filename, fileobj, contentype) |
| or 4-tuples (filename, fileobj, contentype, custom_headers). |
| """ |
| if not files: |
| raise ValueError("Files must be provided.") |
| elif isinstance(data, basestring): |
| raise ValueError("Data must not be a string.") |
|
|
| new_fields: list[RequestField | tuple[str, bytes]] = [] |
| fields = to_key_val_list(data or {}) |
| files = to_key_val_list(files or {}) |
|
|
| for field, val in fields: |
| if isinstance(val, basestring) or not hasattr(val, "__iter__"): |
| val = [val] |
| for v in val: |
| if v is not None: |
| |
| if not isinstance(v, bytes): |
| v = str(v) |
|
|
| new_fields.append( |
| ( |
| field.decode("utf-8") |
| if isinstance(field, bytes) |
| else field, |
| v.encode("utf-8") if isinstance(v, str) else v, |
| ) |
| ) |
|
|
| for k, v in files: |
| |
| ft = None |
| fh = None |
| if isinstance(v, (tuple, list)): |
| if len(v) == 2: |
| fn, fp = v |
| elif len(v) == 3: |
| fn, fp, ft = v |
| else: |
| fn, fp, ft, fh = v |
| else: |
| fn = guess_filename(v) or k |
| fp = v |
|
|
| if isinstance(fp, (str, bytes, bytearray)): |
| fdata = fp |
| elif isinstance(fp, _SupportsRead): |
| fdata = fp.read() |
| elif fp is None: |
| continue |
| else: |
| fdata = fp |
|
|
| rf = RequestField(name=k, data=fdata, filename=fn, headers=fh) |
| rf.make_multipart(content_type=ft) |
| new_fields.append(rf) |
|
|
| body, content_type = encode_multipart_formdata(new_fields) |
|
|
| return body, content_type |
|
|
|
|
| class RequestHooksMixin: |
| hooks: dict[str, list[_t.HookType]] |
|
|
| def register_hook( |
| self, event: str, hook: Iterable[_t.HookType] | _t.HookType |
| ) -> None: |
| """Properly register a hook.""" |
|
|
| if event not in self.hooks: |
| raise ValueError(f'Unsupported event specified, with event name "{event}"') |
|
|
| if isinstance(hook, Callable): |
| self.hooks[event].append(hook) |
| elif hasattr(hook, "__iter__"): |
| self.hooks[event].extend(h for h in hook if isinstance(h, Callable)) |
|
|
| def deregister_hook(self, event: str, hook: _t.HookType) -> bool: |
| """Deregister a previously registered hook. |
| Returns True if the hook existed, False if not. |
| """ |
|
|
| try: |
| self.hooks[event].remove(hook) |
| return True |
| except ValueError: |
| return False |
|
|
|
|
| class Request(RequestHooksMixin): |
| """A user-created :class:`Request <Request>` object. |
| |
| Used to prepare a :class:`PreparedRequest <PreparedRequest>`, which is sent to the server. |
| |
| :param method: HTTP method to use. |
| :param url: URL to send. |
| :param headers: dictionary of headers to send. |
| :param files: dictionary of {filename: fileobject} files to multipart upload. |
| :param data: the body to attach to the request. If a dictionary or |
| list of tuples ``[(key, value)]`` is provided, form-encoding will |
| take place. |
| :param json: json for the body to attach to the request (if files or data is not specified). |
| :param params: URL parameters to append to the URL. If a dictionary or |
| list of tuples ``[(key, value)]`` is provided, form-encoding will |
| take place. |
| :param auth: Auth handler or (user, pass) tuple. |
| :param cookies: dictionary or CookieJar of cookies to attach to this request. |
| :param hooks: dictionary of callback hooks, for internal usage. |
| |
| Usage:: |
| |
| >>> import requests |
| >>> req = requests.Request('GET', 'https://httpbin.org/get') |
| >>> req.prepare() |
| <PreparedRequest [GET]> |
| """ |
|
|
| method: str | None |
| url: _t.UriType | None |
| headers: CaseInsensitiveDict[str] | Mapping[str, str | bytes] | None |
| files: _t.FilesType |
| data: _t.DataType |
| json: _t.JsonType |
| params: _t.ParamsType |
| auth: _t.AuthType |
| cookies: RequestsCookieJar | CookieJar | dict[str, str] | None |
|
|
| def __init__( |
| self, |
| method: str | None = None, |
| url: _t.UriType | None = None, |
| headers: Mapping[str, str | bytes] | None = None, |
| files: _t.FilesType = None, |
| data: _t.DataType = None, |
| params: _t.ParamsType = None, |
| auth: _t.AuthType = None, |
| cookies: RequestsCookieJar | CookieJar | dict[str, str] | None = None, |
| hooks: _t.HooksInputType | None = None, |
| json: _t.JsonType = None, |
| ) -> None: |
| |
| data = [] if data is None else data |
| files = [] if files is None else files |
| headers = {} if headers is None else headers |
| params = {} if params is None else params |
| hooks = {} if hooks is None else hooks |
|
|
| self.hooks = default_hooks() |
| for k, v in list(hooks.items()): |
| self.register_hook(event=k, hook=v) |
|
|
| self.method = method |
| self.url = url |
| self.headers = headers |
| self.files = files |
| self.data = data |
| self.json = json |
| self.params = params |
| self.auth = auth |
| self.cookies = cookies |
|
|
| def __repr__(self) -> str: |
| return f"<Request [{self.method}]>" |
|
|
| def prepare(self) -> PreparedRequest: |
| """Constructs a :class:`PreparedRequest <PreparedRequest>` for transmission and returns it.""" |
| p = PreparedRequest() |
| p.prepare( |
| method=self.method, |
| url=self.url, |
| headers=self.headers, |
| files=self.files, |
| data=self.data, |
| json=self.json, |
| params=self.params, |
| auth=self.auth, |
| cookies=self.cookies, |
| hooks=self.hooks, |
| ) |
| return p |
|
|
|
|
| class PreparedRequest(RequestEncodingMixin, RequestHooksMixin): |
| """The fully mutable :class:`PreparedRequest <PreparedRequest>` object, |
| containing the exact bytes that will be sent to the server. |
| |
| Instances are generated from a :class:`Request <Request>` object, and |
| should not be instantiated manually; doing so may produce undesirable |
| effects. |
| |
| Usage:: |
| |
| >>> import requests |
| >>> req = requests.Request('GET', 'https://httpbin.org/get') |
| >>> r = req.prepare() |
| >>> r |
| <PreparedRequest [GET]> |
| |
| >>> s = requests.Session() |
| >>> s.send(r) |
| <Response [200]> |
| """ |
|
|
| method: str | None |
| url: str | None |
| headers: CaseInsensitiveDict[str | bytes] |
| _cookies: RequestsCookieJar | CookieJar | None |
| body: _t.BodyType |
| hooks: dict[str, list[_t.HookType]] |
| _body_position: int | object | None |
|
|
| def __init__(self) -> None: |
| |
| self.method = None |
| |
| self.url = None |
| |
| self.headers = None |
| |
| |
| self._cookies = None |
| |
| self.body = None |
| |
| self.hooks = default_hooks() |
| |
| self._body_position = None |
|
|
| def prepare( |
| self, |
| method: str | None = None, |
| url: _t.UriType | None = None, |
| headers: Mapping[str, str | bytes] | None = None, |
| files: _t.FilesType = None, |
| data: _t.DataType = None, |
| params: _t.ParamsType = None, |
| auth: _t.AuthType = None, |
| cookies: RequestsCookieJar | CookieJar | dict[str, str] | None = None, |
| hooks: _t.HooksInputType | None = None, |
| json: _t.JsonType = None, |
| ) -> None: |
| """Prepares the entire request with the given parameters.""" |
|
|
| url = cast("_t.UriType", url) |
| self.prepare_method(method) |
| self.prepare_url(url, params) |
| self.prepare_headers(headers) |
| self.prepare_cookies(cookies) |
| self.prepare_body(data, files, json) |
| self.prepare_auth(auth, url) |
|
|
| |
| |
|
|
| |
| self.prepare_hooks(hooks) |
|
|
| def __repr__(self) -> str: |
| return f"<PreparedRequest [{self.method}]>" |
|
|
| def copy(self) -> PreparedRequest: |
| p = PreparedRequest() |
| p.method = self.method |
| p.url = self.url |
| p.headers = self.headers.copy() if self.headers is not None else None |
| p._cookies = _copy_cookie_jar(self._cookies) |
| p.body = self.body |
| p.hooks = self.hooks |
| p._body_position = self._body_position |
| return p |
|
|
| def prepare_method(self, method: str | None) -> None: |
| """Prepares the given HTTP method.""" |
| self.method = method |
| if self.method is not None: |
| self.method = to_native_string(self.method.upper()) |
|
|
| @staticmethod |
| def _get_idna_encoded_host(host: str) -> str: |
| import idna |
|
|
| try: |
| host = idna.encode(host, uts46=True).decode("utf-8") |
| except idna.IDNAError: |
| raise UnicodeError |
| return host |
|
|
| def prepare_url( |
| self, |
| url: _t.UriType, |
| params: _t.ParamsType, |
| ) -> None: |
| """Prepares the given HTTP URL.""" |
| |
| |
| |
| |
| |
| if isinstance(url, bytes): |
| url = url.decode("utf8") |
| else: |
| url = str(url) |
|
|
| |
| url = url.lstrip() |
|
|
| |
| |
| |
| if ":" in url and not url.lower().startswith("http"): |
| self.url = url |
| return |
|
|
| |
| try: |
| scheme, auth, host, port, path, query, fragment = parse_url(url) |
| except LocationParseError as e: |
| raise InvalidURL(*e.args) |
|
|
| if not scheme: |
| raise MissingSchema( |
| f"Invalid URL {url!r}: No scheme supplied. " |
| f"Perhaps you meant https://{url}?" |
| ) |
|
|
| if not host: |
| raise InvalidURL(f"Invalid URL {url!r}: No host supplied") |
|
|
| |
| |
| |
| |
| if not unicode_is_ascii(host): |
| try: |
| host = self._get_idna_encoded_host(host) |
| except UnicodeError: |
| raise InvalidURL("URL has an invalid label.") |
| elif host.startswith(("*", ".")): |
| raise InvalidURL("URL has an invalid label.") |
|
|
| |
| netloc = auth or "" |
| if netloc: |
| netloc += "@" |
| netloc += host |
| if port: |
| netloc += f":{port}" |
|
|
| |
| if not path: |
| path = "/" |
|
|
| if isinstance(params, (str, bytes)): |
| params = to_native_string(params) |
|
|
| if params is not None: |
| enc_params = self._encode_params(params) |
| else: |
| enc_params = "" |
|
|
| if enc_params: |
| if query: |
| query = f"{query}&{enc_params}" |
| else: |
| query = enc_params |
|
|
| url = requote_uri(urlunparse((scheme, netloc, path, "", query, fragment))) |
| self.url = url |
|
|
| def prepare_headers(self, headers: Mapping[str, str | bytes] | None) -> None: |
| """Prepares the given HTTP headers.""" |
|
|
| self.headers = CaseInsensitiveDict() |
| if headers: |
| for header in headers.items(): |
| |
| check_header_validity(header) |
| name, value = header |
| self.headers[to_native_string(name)] = value |
|
|
| def prepare_body( |
| self, data: _t.DataType, files: _t.FilesType, json: _t.JsonType = None |
| ) -> None: |
| """Prepares the given HTTP body data.""" |
|
|
| |
| |
|
|
| |
| body = None |
| content_type = None |
|
|
| if not data and json is not None: |
| |
| |
| content_type = "application/json" |
|
|
| try: |
| body = complexjson.dumps(json, allow_nan=False) |
| except ValueError as ve: |
| raise InvalidJSONError(ve, request=self) |
|
|
| if not isinstance(body, bytes): |
| body = body.encode("utf-8") |
|
|
| if isinstance(data, Iterable) and not isinstance( |
| data, (str, bytes, list, tuple, Mapping) |
| ): |
| try: |
| length = super_len(data) |
| except (TypeError, AttributeError, UnsupportedOperation): |
| length = None |
|
|
| body = data |
|
|
| if getattr(body, "tell", None) is not None: |
| |
| |
| |
| try: |
| self._body_position = body.tell() |
| except OSError: |
| |
| |
| self._body_position = object() |
|
|
| if files: |
| raise NotImplementedError( |
| "Streamed bodies and files are mutually exclusive." |
| ) |
|
|
| if length: |
| self.headers["Content-Length"] = builtin_str(length) |
| else: |
| self.headers["Transfer-Encoding"] = "chunked" |
| else: |
| |
| raw_data = cast("_t.RawDataType | None", data) |
|
|
| |
| if files: |
| (body, content_type) = self._encode_files(files, raw_data) |
| else: |
| if raw_data: |
| body = self._encode_params(raw_data) |
| if isinstance(data, basestring) or isinstance(data, _SupportsRead): |
| content_type = None |
| else: |
| content_type = "application/x-www-form-urlencoded" |
|
|
| self.prepare_content_length(body) |
|
|
| |
| if content_type and ("content-type" not in self.headers): |
| self.headers["Content-Type"] = content_type |
|
|
| self.body = body |
|
|
| def prepare_content_length(self, body: _t.BodyType) -> None: |
| """Prepare Content-Length header based on request method and body""" |
| if body is not None: |
| length = super_len(body) |
| if length: |
| |
| |
| self.headers["Content-Length"] = builtin_str(length) |
| elif ( |
| self.method not in ("GET", "HEAD") |
| and self.headers.get("Content-Length") is None |
| ): |
| |
| |
| self.headers["Content-Length"] = "0" |
|
|
| def prepare_auth( |
| self, |
| auth: _t.AuthType, |
| url: _t.UriType = "", |
| ) -> None: |
| """Prepares the given HTTP auth data.""" |
|
|
| |
| if auth is None: |
| url_auth = get_auth_from_url(cast(str, self.url)) |
| auth = url_auth if any(url_auth) else None |
|
|
| if auth: |
| if isinstance(auth, tuple) and len(auth) == 2: |
| |
| auth_handler = HTTPBasicAuth(*auth) |
| else: |
| |
| auth_handler = cast("Callable[..., PreparedRequest]", auth) |
|
|
| |
| r = auth_handler(self) |
|
|
| |
| self.__dict__.update(r.__dict__) |
|
|
| |
| self.prepare_content_length(self.body) |
|
|
| def prepare_cookies( |
| self, cookies: RequestsCookieJar | CookieJar | dict[str, str] | None |
| ) -> None: |
| """Prepares the given HTTP cookie data. |
| |
| This function eventually generates a ``Cookie`` header from the |
| given cookies using cookielib. Due to cookielib's design, the header |
| will not be regenerated if it already exists, meaning this function |
| can only be called once for the life of the |
| :class:`PreparedRequest <PreparedRequest>` object. Any subsequent calls |
| to ``prepare_cookies`` will have no actual effect, unless the "Cookie" |
| header is removed beforehand. |
| """ |
| if isinstance(cookies, cookielib.CookieJar): |
| self._cookies = cookies |
| else: |
| self._cookies = cookiejar_from_dict(cookies) |
|
|
| cookies_jar = cast("CookieJar", self._cookies) |
| cookie_header = get_cookie_header(cookies_jar, self) |
| if cookie_header is not None: |
| self.headers["Cookie"] = cookie_header |
|
|
| def prepare_hooks(self, hooks: _t.HooksInputType | None) -> None: |
| """Prepares the given hooks.""" |
| |
| |
| |
| hooks = hooks or {} |
| for event in hooks: |
| self.register_hook(event, hooks[event]) |
|
|
|
|
| class Response: |
| """The :class:`Response <Response>` object, which contains a |
| server's response to an HTTP request. |
| """ |
|
|
| _content: bytes | Literal[False] | None |
| _content_consumed: bool |
| _next: PreparedRequest | None |
| status_code: int |
| headers: CaseInsensitiveDict[str] |
| raw: Any |
| url: str |
| encoding: str | None |
| history: list[Response] |
| reason: str | None |
| cookies: RequestsCookieJar |
| elapsed: datetime.timedelta |
| request: PreparedRequest |
| connection: HTTPAdapter |
|
|
| __attrs__: list[str] = [ |
| "_content", |
| "status_code", |
| "headers", |
| "url", |
| "history", |
| "encoding", |
| "reason", |
| "cookies", |
| "elapsed", |
| "request", |
| ] |
|
|
| def __init__(self) -> None: |
| self._content = False |
| self._content_consumed = False |
| self._next = None |
|
|
| |
| self.status_code = None |
|
|
| |
| |
| |
| self.headers = CaseInsensitiveDict() |
|
|
| |
| |
| |
| self.raw = None |
|
|
| |
| self.url = None |
|
|
| |
| self.encoding = None |
|
|
| |
| |
| |
| self.history = [] |
|
|
| |
| self.reason = None |
|
|
| |
| self.cookies = cookiejar_from_dict({}) |
|
|
| |
| |
| |
| |
| |
| |
| self.elapsed = datetime.timedelta(0) |
|
|
| |
| |
| self.request = None |
|
|
| def __enter__(self) -> Self: |
| return self |
|
|
| def __exit__(self, *args: Any) -> None: |
| self.close() |
|
|
| def __getstate__(self) -> dict[str, Any]: |
| |
| |
| if not self._content_consumed: |
| self.content |
|
|
| return {attr: getattr(self, attr, None) for attr in self.__attrs__} |
|
|
| def __setstate__(self, state: dict[str, Any]) -> None: |
| for name, value in state.items(): |
| setattr(self, name, value) |
|
|
| |
| setattr(self, "_content_consumed", True) |
| setattr(self, "raw", None) |
|
|
| def __repr__(self) -> str: |
| return f"<Response [{self.status_code}]>" |
|
|
| def __bool__(self) -> bool: |
| """Returns True if :attr:`status_code` is less than 400. |
| |
| This attribute checks if the status code of the response is between |
| 400 and 600 to see if there was a client error or a server error. If |
| the status code, is between 200 and 400, this will return True. This |
| is **not** a check to see if the response code is ``200 OK``. |
| """ |
| return self.ok |
|
|
| def __nonzero__(self) -> bool: |
| """Returns True if :attr:`status_code` is less than 400. |
| |
| This attribute checks if the status code of the response is between |
| 400 and 600 to see if there was a client error or a server error. If |
| the status code, is between 200 and 400, this will return True. This |
| is **not** a check to see if the response code is ``200 OK``. |
| """ |
| return self.ok |
|
|
| def __iter__(self) -> Iterator[bytes]: |
| """Allows you to use a response as an iterator.""" |
| return self.iter_content(128) |
|
|
| @property |
| def ok(self) -> bool: |
| """Returns True if :attr:`status_code` is less than 400, False if not. |
| |
| This attribute checks if the status code of the response is between |
| 400 and 600 to see if there was a client error or a server error. If |
| the status code is between 200 and 400, this will return True. This |
| is **not** a check to see if the response code is ``200 OK``. |
| """ |
| try: |
| self.raise_for_status() |
| except HTTPError: |
| return False |
| return True |
|
|
| @property |
| def is_redirect(self) -> bool: |
| """True if this Response is a well-formed HTTP redirect that could have |
| been processed automatically (by :meth:`Session.resolve_redirects`). |
| """ |
| return "location" in self.headers and self.status_code in REDIRECT_STATI |
|
|
| @property |
| def is_permanent_redirect(self) -> bool: |
| """True if this Response one of the permanent versions of redirect.""" |
| return "location" in self.headers and self.status_code in ( |
| codes.moved_permanently, |
| codes.permanent_redirect, |
| ) |
|
|
| @property |
| def next(self) -> PreparedRequest | None: |
| """Returns a PreparedRequest for the next request in a redirect chain, if there is one.""" |
| return self._next |
|
|
| @property |
| def apparent_encoding(self) -> str | None: |
| """The apparent encoding, provided by the charset_normalizer or chardet libraries.""" |
| if chardet is not None: |
| return chardet.detect(self.content)["encoding"] |
| else: |
| |
| |
| return "utf-8" |
|
|
| @overload |
| def iter_content( |
| self, chunk_size: int | None = 1, decode_unicode: Literal[False] = False |
| ) -> Iterator[bytes]: ... |
| @overload |
| def iter_content( |
| self, chunk_size: int | None = 1, *, decode_unicode: Literal[True] |
| ) -> Iterator[str | bytes]: ... |
| def iter_content( |
| self, chunk_size: int | None = 1, decode_unicode: bool = False |
| ) -> Iterator[str | bytes]: |
| """Iterates over the response data. When stream=True is set on the |
| request, this avoids reading the content at once into memory for |
| large responses. The chunk size is the number of bytes it should |
| read into memory. This is not necessarily the length of each item |
| returned as decoding can take place. |
| |
| chunk_size must be of type int or None. A value of None will |
| function differently depending on the value of `stream`. |
| stream=True will read data as it arrives in whatever size the |
| chunks are received. If stream=False, data is returned as |
| a single chunk. |
| |
| If decode_unicode is True, content will be decoded using encoding |
| information from the response. If no encoding information is available, |
| bytes will be returned. This can be bypassed by manually setting |
| `encoding` on the response. |
| """ |
|
|
| def generate() -> Generator[bytes, None, None]: |
| |
| if hasattr(self.raw, "stream"): |
| try: |
| yield from self.raw.stream(chunk_size, decode_content=True) |
| except ProtocolError as e: |
| raise ChunkedEncodingError(e) |
| except DecodeError as e: |
| raise ContentDecodingError(e) |
| except ReadTimeoutError as e: |
| raise ConnectionError(e) |
| except SSLError as e: |
| raise RequestsSSLError(e) |
| else: |
| |
| while True: |
| chunk = self.raw.read(chunk_size) |
| if not chunk: |
| break |
| yield chunk |
|
|
| self._content_consumed = True |
|
|
| if self._content_consumed and isinstance(self._content, bool): |
| raise StreamConsumedError() |
| elif chunk_size is not None and not isinstance(chunk_size, int): |
| raise TypeError( |
| f"chunk_size must be an int, it is instead a {type(chunk_size)}." |
| ) |
|
|
| if self._content_consumed: |
| |
| content = cast(bytes, self._content) |
| chunks = iter_slices(content, chunk_size) |
| else: |
| chunks = generate() |
|
|
| if decode_unicode: |
| chunks = stream_decode_response_unicode(chunks, self) |
|
|
| return chunks |
|
|
| @overload |
| def iter_lines( |
| self, |
| chunk_size: int = ITER_CHUNK_SIZE, |
| decode_unicode: Literal[False] = False, |
| delimiter: bytes | None = None, |
| ) -> Iterator[bytes]: ... |
| @overload |
| def iter_lines( |
| self, |
| chunk_size: int = ITER_CHUNK_SIZE, |
| *, |
| decode_unicode: Literal[True], |
| delimiter: str | bytes | None = None, |
| ) -> Iterator[str | bytes]: ... |
| def iter_lines( |
| self, |
| chunk_size: int = ITER_CHUNK_SIZE, |
| decode_unicode: bool = False, |
| delimiter: str | bytes | None = None, |
| ) -> Iterator[str | bytes]: |
| """Iterates over the response data, one line at a time. When |
| stream=True is set on the request, this avoids reading the |
| content at once into memory for large responses. |
| |
| The decode_unicode param works the same as in `iter_content`, with the |
| same caveats. |
| |
| .. note:: This method is not reentrant safe. |
| """ |
|
|
| pending: str | bytes | None = None |
|
|
| for chunk in self.iter_content( |
| chunk_size=chunk_size, decode_unicode=decode_unicode |
| ): |
| if pending is not None: |
| |
| chunk = cast("str | bytes", pending + chunk) |
|
|
| if delimiter: |
| lines = chunk.split(delimiter) |
| else: |
| lines = chunk.splitlines() |
|
|
| if lines and lines[-1] and chunk and lines[-1][-1] == chunk[-1]: |
| pending = lines.pop() |
| else: |
| pending = None |
|
|
| yield from lines |
|
|
| if pending is not None: |
| yield pending |
|
|
| @property |
| def content(self) -> bytes: |
| """Content of the response, in bytes.""" |
|
|
| if self._content is False: |
| |
| if self._content_consumed: |
| raise RuntimeError("The content for this response was already consumed") |
|
|
| if self.status_code == 0 or self.raw is None: |
| self._content = None |
| else: |
| self._content = b"".join(self.iter_content(CONTENT_CHUNK_SIZE)) or b"" |
|
|
| self._content_consumed = True |
| |
| |
| return self._content |
|
|
| @property |
| def text(self) -> str: |
| """Content of the response, in unicode. |
| |
| If Response.encoding is None, encoding will be guessed using |
| ``charset_normalizer`` or ``chardet``. |
| |
| The encoding of the response content is determined based solely on HTTP |
| headers, following RFC 2616 to the letter. If you can take advantage of |
| non-HTTP knowledge to make a better guess at the encoding, you should |
| set ``r.encoding`` appropriately before accessing this property. |
| """ |
|
|
| |
| content = None |
| encoding = self.encoding |
|
|
| if not self.content: |
| return "" |
|
|
| |
| if self.encoding is None: |
| encoding = self.apparent_encoding |
|
|
| |
| try: |
| content = str(self.content, encoding or "utf-8", errors="replace") |
| except (LookupError, TypeError): |
| |
| |
| |
| |
| |
| |
| content = str(self.content, errors="replace") |
|
|
| return content |
|
|
| def json(self, **kwargs: Any) -> Any: |
| r"""Decodes the JSON response body (if any) as a Python object. |
| |
| This may return a dictionary, list, etc. depending on what is in the response. |
| |
| :param \*\*kwargs: Optional arguments that ``json.loads`` takes. |
| :raises requests.exceptions.JSONDecodeError: If the response body does not |
| contain valid json. |
| """ |
|
|
| if not self.encoding and self.content and len(self.content) > 3: |
| |
| |
| |
| |
| encoding = guess_json_utf(self.content) |
| if encoding is not None: |
| try: |
| return complexjson.loads(self.content.decode(encoding), **kwargs) |
| except UnicodeDecodeError: |
| |
| |
| |
| |
| pass |
| except JSONDecodeError as e: |
| raise RequestsJSONDecodeError(e.msg, e.doc, e.pos) |
|
|
| try: |
| return complexjson.loads(self.text, **kwargs) |
| except JSONDecodeError as e: |
| |
| |
| raise RequestsJSONDecodeError(e.msg, e.doc, e.pos) |
|
|
| @property |
| def links(self) -> dict[str, dict[str, str]]: |
| """Returns the parsed header links of the response, if any.""" |
|
|
| header = self.headers.get("link") |
|
|
| resolved_links: dict[str, dict[str, str]] = {} |
|
|
| if header: |
| links = parse_header_links(header) |
|
|
| for link in links: |
| key = link.get("rel") or link.get("url") |
| if key is not None: |
| resolved_links[key] = link |
|
|
| return resolved_links |
|
|
| def raise_for_status(self) -> None: |
| """Raises :class:`HTTPError`, if one occurred.""" |
|
|
| http_error_msg = "" |
| if isinstance(self.reason, bytes): |
| |
| |
| |
| |
| try: |
| reason = self.reason.decode("utf-8") |
| except UnicodeDecodeError: |
| reason = self.reason.decode("iso-8859-1") |
| else: |
| reason = self.reason |
|
|
| if 400 <= self.status_code < 500: |
| http_error_msg = ( |
| f"{self.status_code} Client Error: {reason} for url: {self.url}" |
| ) |
|
|
| elif 500 <= self.status_code < 600: |
| http_error_msg = ( |
| f"{self.status_code} Server Error: {reason} for url: {self.url}" |
| ) |
|
|
| if http_error_msg: |
| raise HTTPError(http_error_msg, response=self) |
|
|
| def close(self) -> None: |
| """Releases the connection back to the pool. Once this method has been |
| called the underlying ``raw`` object must not be accessed again. |
| |
| *Note: Should not normally need to be called explicitly.* |
| """ |
| if not self._content_consumed: |
| self.raw.close() |
|
|
| release_conn = getattr(self.raw, "release_conn", None) |
| if release_conn is not None: |
| release_conn() |
|
|