drission 0.1.1

Rust 浏览器自动化库:反检测(Camoufox/Firefox)+ 内置验证码 OCR 与图片滑块缺口距离识别 + 高并发爬虫 / XHR 监听拦截 / 自动过盾,DrissionPage 风格 API。Browser automation in Rust with anti-detect, built-in captcha OCR and slider-gap solving, async high-concurrency crawling.
1
2
3
4
5
6
7
8
9
//! 浏览器启动器:选项配置 + Camoufox 自动下载分发 + 进程启动(进程启动见后续 `process`)。

pub mod fetch;
pub mod options;
pub mod process;

pub use fetch::{cache_root, ensure_camoufox, platform_tag};
pub use options::{BrowserOptions, Fingerprint, Geolocation, OsType, Proxy};
pub use process::{Launched, launch};