A basic python 2captcha.com module
Project description
Welcome to basicpy2captcha python module👋
A basic python 2captcha.com module
Install
pip install basicpy2captcha
Usage
import base64 import basicpy2captcha 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
Release history Release notifications | RSS feed
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.2.tar.gz
(1.8 kB
view hashes)
Built Distribution
Close
Hashes for basicpy2captcha-1.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95ed2578ff6f21d38e070cd8f8293e9b7d6070731c2ae43b990f818676e3f4ce |
|
MD5 | 0bd66ed290dda46bd957556adfd9b681 |
|
BLAKE2-256 | c96e6a7cf29754a3575598e4f72f4cc8af20fcf941b95444ab5974041f95f7ad |