Skip to main content

CaptchaKiller Python API Client Library, for solving captchas. Fast Recaptcha Captcha Solver

Project description

captchakiller-python

Installation

pip install captchakiller-python

Usage

Import the CaptchaKiller class

from captchakiller import CaptchaKiller

Set your credentials

captcha_killer = CaptchaKiller("API_KEY") # Optionally add partner id and/or timeout

Use the captcha_killer object

Get balance

response = captcha_killer.getbalance()
if response['success']:
    print("Balance: " + response["balance"])
else:
    print("Error: " + str(response["errorId"]) + " - " + response["error"])

Solve captcha

response = captcha_killer.recaptcha_v2("v2key", "site")
if response['success']:
    print("Captcha solved: " + response["result"])
else:
    print("Error: " + str(response["errorId"]) + " - " + response["error"])

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

captchakiller_python-0.0.5.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distribution

captchakiller_python-0.0.5-py3-none-any.whl (3.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page