diff --git a/apps/python-sdk/README.md b/apps/python-sdk/README.md index 412c3e055..abae05de5 100644 --- a/apps/python-sdk/README.md +++ b/apps/python-sdk/README.md @@ -170,11 +170,11 @@ print(batch_scrape_result) ### Checking batch scrape status -To check the status of an asynchronous batch scrape job, use the `check_batch_scrape_job` method. It takes the job ID as a parameter and returns the current status of the batch scrape job. +To check the status of an asynchronous batch scrape job, use the `check_batch_scrape_status` method. It takes the job ID as a parameter and returns the current status of the batch scrape job. ```python id = batch_scrape_result['id'] -status = app.check_batch_scrape_job(id) +status = app.check_batch_scrape_status(id) ``` ### Batch scrape with WebSockets