cloudscraper-rs 0.2.0

Early-stage Cloudflare challenge solver bringing Python's Cloudscraper ideas to Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! Integrations that rely on third-party services.
//!
//! This module groups adapters for captcha providers, JavaScript interpreters,
//! and other external dependencies that bridge the core solver with the
//! outside world.

pub mod captcha;
pub mod interpreters;

pub use interpreters::BoaJavascriptInterpreter;