SDK Python: Camoufox + Turnstile con inferencia YOLO (polling) y fallback DOM opcional para Playwright async.
Project description
camoufox-turnstile
SDK en Python para integrar Cloudflare Turnstile en scrapers o automatizaciones que usen Camoufox y Playwright (async API) con inferencia YOLO (Ultralytics + OpenCV) en todas las rutas principales (solve_on_page). Opcionalmente puede activarse fallback DOM sobre el iframe cuando no hay una sugerencia YOLO clara (SolveOptions.use_dom_fallback).
v0.2.0: las dependencias de visión van en el paquete base; el extra [yolo] queda vacío (deprecated, no-op) para no romper instalaciones antiguas.
- YOLO (estándar): bucle de captura + inferencia con polling, distinción de
success_mark/target_checkbox/widget_container, y espera del token eninput[name="cf-turnstile-response"]. - Fallback DOM (dentro del bucle YOLO): clics heurísticos cuando la detección devuelve
noneyuse_dom_fallback=True(por defecto).
Alcance: sitios que usan el campo oculto estándar cf-turnstile-response. No sustituye otros captchas (reCAPTCHA, hCaptcha, etc.).
Para probar el SDK puedes usar el Turnstile Lab público: https://turnstile-lab.builker.com/ (es la URL por defecto del ejemplo examples/minimal.py).
Guía paso a paso para integrarlo en cualquier proyecto Python: INTEGRACION.md (enlace absoluto para lectura desde PyPI).
pip install camoufox-turnstile
# bucket S3 privado para pesos (opcional):
pip install 'camoufox-turnstile[s3]'
El archivo .pt no va en el wheel de PyPI y suele obtenerse solo en la primera ejecución: sin yolo_weights en SolveOptions ni variable TURNSTILE_YOLO_WEIGHTS, el SDK puede descargar turnstile-yolo-latest.pt desde Builker Open Models, guardarlo en caché y reutilizarlo después.
(torch) llega habitualmente como dependencia transitiva de Ultralytics; elige la variante CPU/CUDA según tu entorno si la predeterminada no te vale.
Instala también Camoufox y ejecuta (una vez por máquina):
camoufox fetch
Pesos .pt (descarga automática por defecto)
El wheel no incluye el modelo en PyPI, pero no tienes que bajarlo tú: salvo que fijes una ruta local, el SDK lo obtiene de red la primera vez y lo deja en caché.
Prioridad (ensure_yolo_weights / SolveOptions.yolo_weights):
-
Ruta local explícita (
yolo_weightsenSolveOptionso variableTURNSTILE_YOLO_WEIGHTS). -
Archivo en caché (
platformdirs, nombre por defectoturnstile-yolo-latest.pt). -
Descarga:
TURNSTILE_YOLO_WEIGHTS_URLoTURNSTILE_YOLO_S3_URIsi las defines; si no, el SDK usa por defecto la última versión pública en Builker Open Models:https://builker-open-models.s3.us-east-2.amazonaws.com/camoufox-turnstile-sdk/turnstile-yolo-latest.pt(constante
DEFAULT_YOLO_WEIGHTS_URLen el paquete).
Para un bucket privado (s3://bucket/key) usa TURNSTILE_YOLO_S3_URI e instala pip install 'camoufox-turnstile[s3]' (boto3 + credenciales en el entorno).
Opcional: TURNSTILE_YOLO_WEIGHTS_SHA256 para verificar integridad tras descarga.
Opcional: TURNSTILE_YOLO_FORCE_DOWNLOAD (1 / true / yes / on): ignora caché y vuelve a bajar el .pt (misma URL en S3).
Opcional: TURNSTILE_YOLO_CACHE_BASENAME para otro nombre de archivo en caché (p. ej. varias variantes del modelo).
Sustituiste el .pt en S3 con el mismo nombre (turnstile-yolo-latest.pt)
Los usuarios que ya tengan caché no descargan de nuevo solos. Opciones:
- Variable de entorno
TURNSTILE_YOLO_FORCE_DOWNLOAD=1(otrue/yes/on) antes de ejecutar, o - En código:
SolveOptions(refresh_yolo_weights=True), o ensure_yolo_weights(force_download=True), o- Borrar el archivo en la caché de usuario (directorio
camoufox_turnstile/weightsdeplatformdirs).
Publicas un modelo con otra clave o otra URL
- Puedes fijar
TURNSTILE_YOLO_WEIGHTS_URL(oTURNSTILE_YOLO_CACHE_BASENAME) sin subir versión del paquete pip. - Si quieres que todos los installs por defecto apunten a un archivo nuevo, cambia
DEFAULT_YOLO_WEIGHTS_URLen el código del SDK y publica una nueva versión en PyPI. El número de versión pip es para cambios del SDK Python, no para cada reentrenamiento del modelo si sigues usando env/URL propia.
Uso rápido
import asyncio
from camoufox.async_api import AsyncCamoufox
from camoufox_turnstile import (
SolveOptions,
camoufox_context_options,
solve_on_page,
DEFAULT_VIEWPORT,
)
async def main():
async with AsyncCamoufox(headless=True) as browser:
ctx = await browser.new_context(
**camoufox_context_options(viewport=DEFAULT_VIEWPORT)
)
page = await ctx.new_page()
await page.goto("https://turnstile-lab.builker.com/", wait_until="load")
result = await solve_on_page(page, SolveOptions())
print(result.visual_ok_via, len(result.token))
await ctx.close()
asyncio.run(main())
API relevante: read_turnstile_token, wait_turnstile_token, assist_turnstile_clicks, assist_turnstile_vision_clicks, load_yolo_detector, ensure_yolo_weights.
Ejemplo en línea de comandos
Desde la raíz del repo del SDK (con entorno editable):
pip install -e ".[dev]"
python examples/minimal.py --headless
# URL explícita (por defecto ya es el lab público):
python examples/minimal.py "https://turnstile-lab.builker.com/" --headless
Pruebas recomendadas contra el Turnstile Lab público: https://turnstile-lab.builker.com/
Construir el paquete (mantenedor)
pip install build
python -m build
Comprueba el wheel en un venv limpio con pip install dist/camoufox_turnstile-*.whl.
Publicar en PyPI
- Comprueba en pypi.org que el nombre del proyecto (
camoufox-turnstile) esté libre y crea el proyecto en tu cuenta. - Trusted Publishing (recomendado): en la configuración del proyecto en PyPI, añade un Trusted Publisher que apunte a este repositorio y al workflow
.github/workflows/publish-pypi.ymlantes del primer envío por CI. Documentación: PyPI Trusted Publishers y Publishing with a trusted publisher. - Sube la versión en
pyproject.tomly crea un tag semántico en Git, p. ej.git tag v0.2.0 && git push origin v0.2.0. El workflow construye el paquete y lo publica con OIDC (sin contraseña en el repo). - Alternativa manual: tras
python -m build, sube contwine upload dist/*y un API token de PyPI (no commitear secretos). Guía PyPA: Packaging Python Projects.
Tras publicar, verifica en un venv limpio: pip install camoufox-turnstile y python -c "import camoufox_turnstile; print(camoufox_turnstile.__version__)".
Legal y responsabilidad
Respeta los términos de uso del sitio objetivo y la legislación aplicable. Este SDK es una herramienta técnica; el uso indebido es responsabilidad del integrador.
Enlace al laboratorio
Proyecto de referencia (experimento): repositorio turnstile-security-lab (experiments/camoufox_yolo_turnstile).
Repositorio del SDK: https://github.com/builker-col/turnstile-camoufox-sdk
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file camoufox_turnstile-0.2.0.tar.gz.
File metadata
- Download URL: camoufox_turnstile-0.2.0.tar.gz
- Upload date:
- Size: 22.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cfd32f6608cc961693ce4e643dc4e38a1686d9af0eee6702372b88d2db143d21
|
|
| MD5 |
0e9cd8e9a002b68fcbdb63440b49d191
|
|
| BLAKE2b-256 |
6d15722f4db1c1a750f26ec7bdc58f614205d428b8d58387e878cf01c545ed2a
|
Provenance
The following attestation bundles were made for camoufox_turnstile-0.2.0.tar.gz:
Publisher:
publish-pypi.yml on builker-col/turnstile-camoufox-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camoufox_turnstile-0.2.0.tar.gz -
Subject digest:
cfd32f6608cc961693ce4e643dc4e38a1686d9af0eee6702372b88d2db143d21 - Sigstore transparency entry: 1546794798
- Sigstore integration time:
-
Permalink:
builker-col/turnstile-camoufox-sdk@7527e8e989264010f2bf7b0613fb297c7f4f22af -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/builker-col
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@7527e8e989264010f2bf7b0613fb297c7f4f22af -
Trigger Event:
push
-
Statement type:
File details
Details for the file camoufox_turnstile-0.2.0-py3-none-any.whl.
File metadata
- Download URL: camoufox_turnstile-0.2.0-py3-none-any.whl
- Upload date:
- Size: 18.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c34764f59a280e520b314ba7793f46b542d10ca5b38f533bbf3c3d3ebd327e0
|
|
| MD5 |
149a4f301c836ba422aebb8d6bd1c151
|
|
| BLAKE2b-256 |
35e00de3d9a60a94dfa36e1950f289f3a16fe40e260d7e02a11fa450a231e847
|
Provenance
The following attestation bundles were made for camoufox_turnstile-0.2.0-py3-none-any.whl:
Publisher:
publish-pypi.yml on builker-col/turnstile-camoufox-sdk
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
camoufox_turnstile-0.2.0-py3-none-any.whl -
Subject digest:
2c34764f59a280e520b314ba7793f46b542d10ca5b38f533bbf3c3d3ebd327e0 - Sigstore transparency entry: 1546794809
- Sigstore integration time:
-
Permalink:
builker-col/turnstile-camoufox-sdk@7527e8e989264010f2bf7b0613fb297c7f4f22af -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/builker-col
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-pypi.yml@7527e8e989264010f2bf7b0613fb297c7f4f22af -
Trigger Event:
push
-
Statement type: