Skip to main content

Asynchronous client for the ImageTyperz API

Project description

imagetyperz-async

An asynchronous client for the ImageTyperz CAPTCHA-solving API.

httpx powers the HTTP requests.

At the moment, only reCAPTCHAs are supported.

Installation

pip install imagetyperz-async

Usage

import asyncio

from imagetyperz import ImageTyperzClient, reCAPTCHAType
from imagetyperz.exceptions import NotDecoded

async def demo():
    ita = ImageTyperzClient('6F0848592604C9E14F0EBEA7368493C5')

    print(await ita.retrieve_balance())
    #: 8.8325

    # Submit reCAPTCHA job
    job_id = await ita.submit_recaptcha(
        page_url='https://example.com/login',
        site_key='scraped-site-key',
        recaptcha_type=reCAPTCHAType.INVISIBLE,
    )
    print(job_id)
    #: 176140709

    # Check for results of the reCAPTCHA job
    while True:
        try:
            g_response = await ita.retrieve_recaptcha(job_id)
        except NotDecoded:
            await asyncio.sleep(5)
            continue
        else:
            print(g_response)
            #: 03AGdBq25hDTCjOq4QywdrY...
            break

    # Alternatively, use complete_recaptcha to automatically handle the polling
    # for results — returning with the result when ready.
    g_response = await ita.complete_recaptcha(
        page_url='https://example.com/login',
        site_key='scraped-site-key',
        recaptcha_type=reCAPTCHAType.INVISIBLE,
    )
    print(g_response)
    #: 03AGdBq25hDTCjOq4QywdrY...

    # Close our client, to prevent warnings about unclosed httpx client
    await ita.aclose()

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

imagetyperz-async-0.1.0.tar.gz (9.4 kB view hashes)

Uploaded Source

Built Distribution

imagetyperz_async-0.1.0-py3-none-any.whl (8.8 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