From 11deaff259efbb05f03db6b75ec05228afa2b8ab Mon Sep 17 00:00:00 2001 From: "firecrawl-spring[bot]" <254786068+firecrawl-spring[bot]@users.noreply.github.com> Date: Wed, 13 May 2026 15:01:23 +0000 Subject: [PATCH] docs(python): tighten Crawl a Website intro Co-Authored-By: micahstairs --- sdks/python.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdks/python.mdx b/sdks/python.mdx index d750bf507..a1be114d7 100644 --- a/sdks/python.mdx +++ b/sdks/python.mdx @@ -62,7 +62,7 @@ print(parsed.markdown) ### Crawl a Website -To crawl a website, use the `crawl` method. It takes the starting URL and optional options as arguments. The options allow you to specify additional settings for the crawl job, such as the maximum number of pages to crawl, allowed domains, and the output format. See [Pagination](#pagination) for auto/manual pagination and limiting. +Crawl an entire website with the `crawl` method. Pass a starting URL plus options to control the maximum number of pages, allowed domains, and output formats. The method blocks until the crawl finishes and returns the aggregated results. See [Pagination](#pagination) for auto and manual paging.