cloudscraper issue (cloud flare version 2) in scraping website

Viewed 7562

I am using the cloudscraper library (https://pypi.org/project/cloudscraper/) to collect webpages. It was working correctly until recently I cannot use the library to download pages of a website.

import cloudscraper
scraper = cloudscraper.create_scraper()
scraper.run(...)

I am receiving the following error:

cloudscraper.exceptions.CloudflareChallengeError: Detected a Cloudflare version 2 challenge, This feature is not available in the opensource (free) version.

Does anyone know how to bypass this checking?

2 Answers

You can not bypass it, would be a cost to solve it as it needs to solve more complex captchas and other stuff, so no one is offering that for free.

If you are willing to pay because you need it for business, you can text me on Discord @ skebby#8519 , I can invite you to a good provider.

You can reach out to the author on discord, and he does have a paid version.

Related