Ensure you have set your Web Transpose API Key.

Set the Max Pages

crawl.set_max_pages(1000)

Set the Allowed URLs

allowed_urls = [
    "https://www.webtranspose.com/blog/*",
    "https://www.webtranspose.com/pricing/*",
]
crawl.set_allowed_urls(allowed_urls)

Set the Banned Pages

banned_urls = [
    "https://www.webtranspose.com/crawl/*",
    "*webtranspose*",
]
crawl.set_banned_pages(banned_urls)