You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Docs: align with code; document json=, per-request callbacks, and the new settings
Reconcile the docs with the reviewed code.
Fixes: non-existent settings (RETRY_TIMES, RANDOMIZE_DOWNLOAD_DELAY, DOWNLOAD_DELAY,
the old query-param settings); the MiddlewareResult factory API; signal handler
kwargs and request_failed/headers_received semantics; ALLOWED_DOMAINS -> allowed_domains;
Scheduler.get(); the RequestQueue ABC surface; response.text() as a method; the
inverted crawl-priority direction; the XML exporter's stringified list output; the
camoufox_page_event_handlers meta key; env-var vs Settings nesting; and the
StatsCollector verb API.
Documents the now-real capabilities: json= bodies, per-request callbacks
(callback/cb_kwargs), RANDOMIZE_DELAY, the RETRY_* settings, COOKIES_ENABLED/
RETRY_ENABLED, IGNORE/KEEP_QUERY_PARAMS, and follow(headers=). Multi-step auth
examples now use callbacks + json=.
Copy file name to clipboardExpand all lines: docs/advanced-topics/crawl_ordering.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
2
-
The scheduler processes requests based on priority values. Higher priority requests are processed first. By adjusting priorities, you can control whether your crawler explores pages breadth-first (level by level), depth-first (following paths deeply), or with custom focus on specific content.
2
+
The scheduler processes requests based on priority values. Requests with a lower priority value are processed first (priority `0` is the default). By adjusting priorities, you can control whether your crawler explores pages breadth-first (level by level), depth-first (following paths deeply), or with custom focus on specific content.
0 commit comments