From c3374bce41f77ca2491b547a1257022ac89cb848 Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Sun, 15 Feb 2026 01:03:36 +0200 Subject: [PATCH] docs: add a note about response body --- docs/fetching/choosing.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/fetching/choosing.md b/docs/fetching/choosing.md index a1c3e4f..632b22d 100644 --- a/docs/fetching/choosing.md +++ b/docs/fetching/choosing.md @@ -77,4 +77,8 @@ The `Response` object is the same as the [Selector](../parsing/main_classes.md#s >>> page.encoding # Response encoding >>> page.meta # Response metadata dictionary (e.g., proxy used). Mainly helpful with the spiders system. ``` -All fetchers return the `Response` object. \ No newline at end of file +All fetchers return the `Response` object. + +!!! note + + Unlike the [Selector](../parsing/main_classes.md#selector) class, the `Response` class's body is always bytes since v0.4. \ No newline at end of file