two-captcha-sdk

2Captcha Python3 API Wrapper


Keywords
2captcha, development
License
MIT
Install
pip install two-captcha-sdk==0.0.2.1

Documentation

TwoCaptcha

2Captcha Python3 API Wrapper

Prerequisites

You will need a 2Captcha API Key which can be found here after registering for 2Captcha on https://2captcha.com

Usage

TwoCaptcha

from twocaptcha import TwoCaptcha

API_KEY = 'YOUR_API_KEY_HERE'
twoCaptcha = TwoCaptcha(API_KEY)

TwoCaptcha.solve_captcha

page_url = 'http://www.example.com'
site_key = '6Le4AQgUAAAAAABhHEq7RWQNJwGR_M-6Jni9tgtA'
captcha_token = twoCaptcha.solve_captcha(site_key=site_key, page_url=page_url)
print(captcha_token) # Ex. '03AE...'

TwoCaptcha.get_balance

balance = twoCaptcha.get_balance()
print(balance) # Ex. '6.11472'

TODO:

  • [ ] proxy support
  • [ ] poll interval
  • [ ] request error handling
  • [ ] request unblocking
  • [ ] unit tests