You are viewing the v1 (legacy) documentation. In v2, crawling uses crawl.start(), crawl.status(), crawl.stop(), and crawl.resume(). See the v2 documentation.
from scrapegraph_py import Clientclient = Client(api_key="your-api-key")response = client.crawl( website_url="https://example.com", user_prompt="Extract all blog post titles", depth=2)