From f25fe64d3cc0da24d736de5f1fefd83342c47f2b Mon Sep 17 00:00:00 2001 From: Karim shoair Date: Tue, 10 Feb 2026 19:01:50 +0200 Subject: [PATCH] docs: updating `fetcher choosing` page and some corrections --- docs/fetching/choosing.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/fetching/choosing.md b/docs/fetching/choosing.md index cfb3114..41eabc5 100644 --- a/docs/fetching/choosing.md +++ b/docs/fetching/choosing.md @@ -71,7 +71,8 @@ The `Response` object is the same as the [Selector](../parsing/main_classes.md#s >>> page.headers # Response headers >>> page.request_headers # Request headers >>> page.history # Response history of redirections, if any ->>> page.body # Raw response body without any processing +>>> page.body # Raw response body as bytes >>> 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