Karim shoair commited on
Commit ·
983da92
1
Parent(s): 7d2ea72
docs: add a note about response body
Browse files
docs/fetching/choosing.md
CHANGED
|
@@ -77,4 +77,8 @@ The `Response` object is the same as the [Selector](../parsing/main_classes.md#s
|
|
| 77 |
>>> page.encoding # Response encoding
|
| 78 |
>>> page.meta # Response metadata dictionary (e.g., proxy used). Mainly helpful with the spiders system.
|
| 79 |
```
|
| 80 |
-
All fetchers return the `Response` object.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 77 |
>>> page.encoding # Response encoding
|
| 78 |
>>> page.meta # Response metadata dictionary (e.g., proxy used). Mainly helpful with the spiders system.
|
| 79 |
```
|
| 80 |
+
All fetchers return the `Response` object.
|
| 81 |
+
|
| 82 |
+
!!! note
|
| 83 |
+
|
| 84 |
+
Unlike the [Selector](../parsing/main_classes.md#selector) class, the `Response` class's body is always bytes since v0.4.
|