šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

captcha-manager

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

captcha-manager

CaptchaManager

0.0.2.1
PyPI
Maintainers
1

captcha-manager

captchamanager abstracts captcha token retrieval.

Motivation

Some programs may require the retrieval of valid captcha tokens. Often, this is accomplished through services like 2Captcha_ that return a valid token given an API key and the challenge site key. captchamanager abstracts this functionality so programs can receive a single token or can load a queue of tokens. Tokens are represented by their value, generation time, and expiration time.

Note

Currently, captchamanager only supports 2Captcha.

Installation

captchamanager is available via pip

::

$ pip install captcha-manager

Usage

.. code:: python

from captchamanager import CaptchaManager

TWO_CAPTCHA_API_KEY = 'ABC123'
SITE_KEY = 'DEF456'
PAGE_URL = 'https://example.com'
captcha_manager = CaptchaManager(TWO_CAPTCHA_API_KEY, SITE_KEY, PAGE_URL)
token = captcha_manager.get_captcha_token() # Returns a single token ASAP

captcha_manager.start_captcha_queue()
# Do something
token = captcha_manager.wait_for_captcha_token() # Returns one valid token from queue

.. _2Captcha: https://2captcha.com/enterpage

Keywords

sneaker bot development

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts