Metadata-Version: 2.1
Name: captchakiller-python
Version: 0.0.5
Summary: CaptchaKiller Python API Client Library, for solving captchas. Fast Recaptcha Captcha Solver
Home-page: https://github.com/captchakillernet/captchakiller-python
Author: captchakiller
Author-email: support@captchakiller.net
Project-URL: Homepage, https://captchakiller.net
Project-URL: Documentation, https://captchakiller.gitbook.io
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# captchakiller-python

## Installation
`pip install captchakiller-python`

## Usage
### Import the CaptchaKiller class
`from captchakiller import CaptchaKiller`

### Set your credentials
`captcha_killer = CaptchaKiller("API_KEY") # Optionally add partner id and/or timeout`

### Use the captcha_killer object
#### Get balance
```
response = captcha_killer.getbalance()
if response['success']:
    print("Balance: " + response["balance"])
else:
    print("Error: " + str(response["errorId"]) + " - " + response["error"])
```
#### Solve captcha
```
response = captcha_killer.recaptcha_v2("v2key", "site")
if response['success']:
    print("Captcha solved: " + response["result"])
else:
    print("Error: " + str(response["errorId"]) + " - " + response["error"])
```
