Skip to main content

A basic python 2captcha.com modulee

Project description

Welcome to py2captcha python module👋

Version

A basic python 2captcha.com module

Install

pip install py2captcha

Usage

import base64
import py2captcha


py2c = captcha.py2c("YOUR_2CAPTCHA_API_KEY")

#Text Image:
with open("captcha.png", "rb") as f:
    img_b64 = base64.b64encode(f.read())

solved = py2c.solveCaptcha(img_b64)
print(solved)


#ReCaptcha:
key = py2c.get_sitekey(driver) #driver - selenium webbrowser object
token = solveReCaptcha(key,driver.current_url)
if token:
  driver.execute_script(
      "document.getElementById('g-recaptcha-response').innerHTML='{}';".format(token)
  )


#getBalance:
balance = py2c.getBalance()
print(balance)

#report Correct resolve:
py2c.reportCorrect()

#report Incorrect resolve:
py2c.reportIncorrect()

Show your support

Give a ⭐️ if this project helped you!

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

basicpy2captcha-1.0.0.tar.gz (1.8 kB view hashes)

Uploaded Source

Built Distribution

basicpy2captcha-1.0.0-py3-none-any.whl (2.5 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