A simple package for interacting with the 9kw.eu anti-captcha service.

Overview

Welcome to captcha9kw’s documentation!

captcha9kw is a smallish Python package for making use of the 9kw.eu services, including solving of interactive captchas like Google’s reCaptcha or image-based captchas used by a lot of different services out there.

Important: This package is under construction and functionality may change.

Installation

You can install captcha9kw from PyPI using pip:

$ pip install captcha9kw

Getting started

Solving a simple image-based captcha is pretty easy:

docs/source/_static/captcha.gif

The captcha used here.

image-captcha

from captcha9kw import api9kw

conn = api9kw()
conn.api_key = "myapikeyhere"
print(f"Current account balance: {conn.balance} credits.")
captcha_id = conn.submit_image_captcha("mycaptcha.gif")
answer = conn.get_answer(captcha_id, wait=1)
if(answer == "spring water"):
    conn.captcha_feedback_correct(captcha_id)
else:
    conn.captcha_feedback_incorrect(captcha_id)

Similarly, for e.g. a reCaptcha:

interactive captcha

from captcha9kw import api9kw

conn = api9kw()
conn.api_key = "myapikeyhere"
print(f"Current account balance: {conn.balance} credits.")
website_url = "https://www.some.web.site"
website_key = obtain_site_key() # Supply your own code here
captcha_id = conn.submit_interactive_captcha(website_key, website_url)
answer = conn.get_answer(captcha_id, wait=1)
if(test_answer_on_site(answer)):
    conn.captcha_feedback_correct(captcha_id)
else:
    conn.captcha_feedback_incorrect(captcha_id)

For more information, check the API Reference.

9kw.eu

9kw.eu is a German captcha-solving service, providing a quick and easy API over HTTP GET/POST. Users can buy credits that will be deducted from based on the type of captcha in question and related settings. As a nice bonus, users can also earn credits for themselves by solving other people’s captchas, either through the website directly or through their custom client.

You can sign up for their service at: https://www.9kw.eu/register.html

Or, if you really wish to grant me a couple of free credits, sign up using my referral link: https://www.9kw.eu/register.html?r=210326

Note: Do not feel any pressure to use the referral link! I know a lot of
people feel iffy about such and I do not feel offended, if you prefer to not add me as your referrer.

Also, maybe take a look at their API.

You might also like...
Python Service for MISP Feed Management

Python Service for MISP Feed Management This set of scripts is designed to offer better reliability and more control over the fetching of feeds into M

Web service which feeds Navitia with real-time disruptions
Web service which feeds Navitia with real-time disruptions

Chaos Chaos is the web service which can feed Navitia with real-time disruptions. It can work together with Kirin which can feed Navitia with real-tim

Team10 backend - A service which accepts a VRM (Vehicle Registration Mark)

GreenShip - API A service which accepts a VRM (Vehicle Registration Mark) and re

This is sample project needed for security course to connect web service to database
This is sample project needed for security course to connect web service to database

secufaku This is sample project needed for security course to "connect web service to database". Why it suits alignment purpose It connects to postgre

A micro-service that can be extended to help in monitoring systems

A micro-service that can be extended to help in monitoring systems. Be extensible to be incorporated in any of the systems to facilitate timely interventions.

Tools for dos (denial-of-service) website / web server
Tools for dos (denial-of-service) website / web server

DoS Attack Tools Tools for dos (denial-of-service) website / web server di buat olah NurvySec How to install on debian / ubuntu $ apt update $ apt ins

B-Pkg is a simple tool in python for installing all basic package in termux

Basic-Pkg 👉🏻 Basic-Pkg 👈🏻 B-Pkg is a simple tool in python for installing all basic package in termux This is my first tool, I hope you will like

GWCelery is a simple and reliable package for annotating and orchestrating LIGO/Virgo alerts
GWCelery is a simple and reliable package for annotating and orchestrating LIGO/Virgo alerts

GWCelery is a simple and reliable package for annotating and orchestrating LIGO/Virgo alerts, built from widely used open source components.

This is a simple SV calling package for diploid assemblies.

dipdiff This is a simple SV calling package for diploid assemblies. It uses a modified version of svim-asm. The package includes its own version minim

Anti VirusTotal written in Python.

How it works Most of the anti-viruses on VirusToal uses sandboxes or vms to scan and detect malicious activity. The code checks to see if the devices

cliphd 3 Dec 26, 2021
A OBS service to package a published repository into a tar.gz file

OBS Source Service obs-service-publish_tar obs-service-publish_tar will create a archive.tar[.<tar compression>] archive containing the published repo

Erico Mendonca 1 Feb 16, 2022
A simple service that allows you to run commands on the server using text

Server Text A simple flask service that allows you to run commands on the server/computer over sms. Think of it as a shell where you run commands over

MT Devs 49 Nov 9, 2021
Simple Denial of Service Program yang di bikin menggunakan bahasa pemograman Python,

Peringatan Tujuan kami share code Indo-DoS hanya untuk bertujuan edukasi / pembelajaran! Dilarang memperjual belikan source ini / memperjual-belikan s

SonLyte 8 Nov 7, 2021
A dead-simple service that notifies you when something goes down.

Totmannschalter Totmannschalter (German for dead man's switch) is a simple service that notifies you when it has not received any message from a servi

null 1 Dec 20, 2021
A test repository to build a python package and publish the package to Artifact Registry using GCB

A test repository to build a python package and publish the package to Artifact Registry using GCB. Then have the package be a dependency in a GCF function.

null 1 Feb 9, 2022
VirtualBox Power Driver for MAAS (Metal as a Service)

vboxpower VirtualBox Power Driver for MAAS (Metal as a Service) A way to manage the power of VirtualBox virtual machines via the MAAS webhook driver.

Saeid Bostandoust 131 Dec 17, 2022
An alternative site to emplea.do due to inconsistent service of the app.

feline a agile and fast alternative to emplea.do License: MIT Settings Moved to settings. Basic Commands Setting Up Your Users To create a normal user

Codetiger 8 Nov 10, 2021
Service for working with open data of the State Duma of the Russian Federation

Сервис для работы с открытыми данными Госдумы РФ Исходные данные из API Госдумы РФ извлекаются с помощью Apache Nifi и приземляются в хранилище Clickh

Aleksandr Sergeenko 2 Feb 14, 2022
A service to display a quick summary of a project on GitHub.

A service to display a quick summary of a project on GitHub. Usage ?? Paste the code below with details filled in as specified below into your Readme.

Rohit V 8 Dec 6, 2022