From 961a87452e373754ffbe143232f935bac2091060 Mon Sep 17 00:00:00 2001 From: Trang Le Date: Thu, 3 Oct 2024 16:24:58 +0700 Subject: [PATCH] Remove wait_until_done from python-sdk example --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 04927ac5..b2055c38 100644 --- a/README.md +++ b/README.md @@ -410,8 +410,7 @@ crawl_status = app.crawl_url( params={ 'limit': 100, 'scrapeOptions': {'formats': ['markdown', 'html']} - }, - wait_until_done=True, + }, poll_interval=30 ) print(crawl_status)