Skip to content

Latest commit

 

History

History
74 lines (53 loc) · 1.85 KB

File metadata and controls

74 lines (53 loc) · 1.85 KB

Captcha Solving Basic (Python)

Basic captcha solving with support for reCAPTCHA, Cloudflare, and custom captchas.

Run on Intuned

Run on Intuned

APIs

API Description
captcha-solver Solves reCAPTCHA v2, Cloudflare Turnstile, GeeTest, and custom captchas

Getting started

Install dependencies

uv sync

If the intuned CLI is not installed, install it globally:

npm install -g @intuned/cli

After installing dependencies, intuned command should be available in your environment.

Run an API

intuned dev run api captcha-solver .parameters/api/captcha-solver/default.json

Save project

intuned dev provision

Deploy

intuned dev deploy

Project structure

/
├── api/
│   └── captcha-solver.py             # Solves multiple captcha types (reCAPTCHA, Cloudflare, GeeTest, custom)
├── helpers/
│   └── captcha.py                    # go_to_with_captcha_solve helper
├── intuned-resources/
│   └── jobs/
│       └── captcha-solver.job.jsonc  # Job definition
├── .parameters/api/                  # Test parameters
├── Intuned.jsonc                     # Project config
├── pyproject.toml                    # Python dependencies
└── README.md

Related