2captcha-python


Name2captcha-python JSON
Version 1.5.0 PyPI version JSON
download
home_pagehttps://github.com/2captcha/2captcha-python/
SummaryPython module for easy integration with 2Captcha API
upload_time2024-08-30 13:34:44
maintainerNone
docs_urlNone
author2Captcha
requires_python>=3.6
licenseNone
keywords 2captcha captcha api captcha solver recaptcha hcaptcha funcaptcha geetest image captcha coordinates click captcha geetest v4 lemin captcha amazon waf cloudflare turnstile capy puzzle mtcaptcha friendly captcha tencent cutcaptcha datadome cybersiara
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <a href="https://github.com/2captcha/2captcha-python"><img src="https://github.com/user-attachments/assets/a737d428-5233-4605-9d09-211fa213d069" width="82" height="30"></a>
<a href="https://github.com/2captcha/2captcha-javascript"><img src="https://github.com/user-attachments/assets/4d3b4541-34b2-4ed2-a687-d694ce67e5a6" width="36" height="30"></a>
<a href="https://github.com/2captcha/2captcha-go"><img src="https://github.com/user-attachments/assets/ab22182e-6cb2-41fa-91f4-d5e89c6d7c6f" width="63" height="30"></a>
<a href="https://github.com/2captcha/2captcha-ruby"><img src="https://github.com/user-attachments/assets/0270d56f-79b0-4c95-9b09-4de89579914b" width="75" height="30"></a>
<a href="https://github.com/2captcha/2captcha-cpp"><img src="https://github.com/user-attachments/assets/36de8512-acfd-44fb-bb1f-b7c793a3f926" width="45" height="30"></a>
<a href="https://github.com/2captcha/2captcha-php"><img src="https://github.com/user-attachments/assets/e8797843-3f61-4fa9-a155-ab0b21fb3858" width="52" height="30"></a>
<a href="https://github.com/2captcha/2captcha-java"><img src="https://github.com/user-attachments/assets/a3d923f6-4fec-4c07-ac50-e20da6370911" width="50" height="30"></a>
<a href="https://github.com/2captcha/2captcha-csharp"><img src="https://github.com/user-attachments/assets/f4d449de-780b-49ed-bb0a-b70c82ec4b32" width="38" height="30"></a>

# Python Module for 2Captcha API (captcha solver)

The easiest way to quickly integrate the [2Captcha] captcha-solving service into your code and automate the solving of any type of captcha.
Examples of API requests for different captcha types are available on the [Python captcha solver](https://2captcha.com/lang/python) page.

- [Python Module for 2Captcha API (captcha solver)](#python-module-for-2captcha-api-captcha-solver)
  - [Installation](#installation)
  - [Configuration](#configuration)
    - [TwoCaptcha instance options](#twocaptcha-instance-options)
  - [Solve captcha](#solve-captcha)
    - [Captcha options](#captcha-options)
    - [Normal Captcha](#normal-captcha)
    - [Audio Captcha](#audio-captcha)
    - [Text Captcha](#text-captcha)
    - [reCAPTCHA v2](#recaptcha-v2)
    - [reCAPTCHA v3](#recaptcha-v3)
    - [FunCaptcha](#funcaptcha)
    - [GeeTest](#geetest)
    - [GeeTest v4](#geetest-v4)
    - [hCaptcha](#hcaptcha)
    - [Lemin Cropped Captcha](#lemin-cropped-captcha)
    - [Cloudflare Turnstile](#cloudflare-turnstile)
    - [Amazon WAF](#amazon-waf)
    - [KeyCaptcha](#keycaptcha)
    - [atbCAPTCHA](#atbcaptcha)
    - [Capy](#capy)
    - [Grid](#grid)
    - [Canvas](#canvas)
    - [ClickCaptcha](#clickcaptcha)
    - [Rotate](#rotate)
    - [MTCaptcha](#mtcaptcha)
    - [Friendly Captcha](#friendly-captcha)
    - [Cutcaptcha](#cutcaptcha)
    - [Tencent](#tencent)
    - [Datadome](#datadome)
    - [CyberSiARA](#cybersiara)
  - [Other methods](#other-methods)
    - [send / get\_result](#send--get_result)
    - [balance](#balance)
    - [report](#report)
  - [Error handling](#error-handling)
  - [Proxies](#proxies)
  - [Async calls](#async-calls)
  - [Examples](#examples)
  - [Examples using Selenium](#examples-using-selenium)
  - [Useful articles](#useful-articles)
  - [Get in touch](#get-in-touch)
  - [Join the team 👪](#join-the-team-)
  - [License](#license)
    - [Graphics and Trademarks](#graphics-and-trademarks)

## Installation

This package can be installed with Pip:

```bash
pip3 install 2captcha-python
```


## Configuration

TwoCaptcha instance can be created like this:

```python 
from twocaptcha import TwoCaptcha

solver = TwoCaptcha('YOUR_API_KEY')
```
Also, there are a few options that can be configured:

```python 
config = {
            'server':           '2captcha.com',
            'apiKey':           'YOUR_API_KEY',
            'softId':            123,
            'callback':         'https://your.site/result-receiver',
            'defaultTimeout':    120,
            'recaptchaTimeout':  600,
            'pollingInterval':   10,
        }
solver = TwoCaptcha(**config)
```

### TwoCaptcha instance options

| Option           | Default value  | Description                                                                                                                                            |
| ---------------- | -------------- |--------------------------------------------------------------------------------------------------------------------------------------------------------|
| server           | `2captcha.com` | API server. You can set it to `rucaptcha.com` if your account is registered there                                                                      |
| softId           | 4580           | your software ID obtained after publishing in [2captcha software catalog]                                                                              |
| callback         | -              | URL of your web server that receives the captcha recognition result. The URL should be first registered in [pingback settings] of your account         |
| defaultTimeout   | 120            | Polling timeout in seconds for all captcha types except reCAPTCHA. Defines how long the module tries to get the answer from the `res.php` API endpoint |
| recaptchaTimeout | 600            | Polling timeout for reCAPTCHA in seconds. Defines how long the module tries to get the answer from the `res.php` API endpoint                          |
| pollingInterval  | 10             | Interval in seconds between requests to the `res.php` API endpoint. Setting values less than 5 seconds is not recommended                              |
| extendedResponse | None           | Set to `True` to get the response with additional fields or in more practical format (enables `JSON` response from `res.php` API endpoint). Suitable for [hCaptcha](#hcaptcha), [ClickCaptcha](#clickcaptcha), [Canvas](#canvas) |


> [!IMPORTANT]
> Once `callback` is defined for the `TwoCaptcha` instance, all methods return only the captcha ID and DO NOT poll the API to get the result. The result will be sent to the callback URL.

To get the answer manually use [get_result method](#send--get_result)

## Solve captcha
When you submit any image-based CAPTCHA, you can provide additional options to help 2captcha workers solve it properly.

### Captcha options
| Option        | Default Value | Description                                                                                        |
| ------------- | ------------- | -------------------------------------------------------------------------------------------------- |
| numeric       | 0             | Defines if the captcha contains numeric or other symbols [see more info in the API docs][post options] |
| minLen        | 0             | minimal answer length                                                                              |
| maxLen        | 0             | maximum answer length                                                                              |
| phrase        | 0             | defines if the answer contains multiple words or not                                               |
| caseSensitive | 0             | defines if the answer is case sensitive                                                            |
| calc          | 0             | defines captcha requires calculation                                                               |
| lang          | -             | defines the captcha language; see the [list of supported languages]                                |
| hintImg       | -             | an image with a hint shown to workers with the captcha                                               |
| hintText      | -             | hint or task text shown to workers with the captcha                                                |

Below, you can find basic examples for every captcha type. Check out [examples directory] for more examples with all available options.

### Normal Captcha

<sup>[API method description.](https://2captcha.com/2captcha-api#solving_normal_captcha)</sup>

To bypass a normal captcha (distorted text on an image) use the following method. This method can also be used to recognize any text in an image.

```python 
result = solver.normal('path/to/captcha.jpg', param1=..., ...)
# OR
result = solver.normal('https://site-with-captcha.com/path/to/captcha.jpg', param1=..., ...)
```

### Audio Captcha

<sup>[API method description.](https://2captcha.com/2captcha-api#audio)</sup>

Use the following method to bypass an audio captcha (mp3 formats only). 
You must provide the language as `lang = 'en'`. Supported languages are "en", "ru", "de", "el", "pt", "fr".

```python 
result = solver.audio('path/to/captcha.mp3', lang = 'lang', param1=..., ...)
# OR
result = solver.audio('https://site-with-captcha.com/path/to/captcha.mp3', lang = 'lang', param1=..., ...)
```

### Text Captcha

<sup>[API method description.](https://2captcha.com/2captcha-api#solving_text_captcha)</sup>

This method can be used to bypass a captcha that requires answering a question provided in clear text.
```python 
result = solver.text('If tomorrow is Saturday, what day is today?', param1=..., ...)
```

### reCAPTCHA v2

<sup>[API method description.](https://2captcha.com/2captcha-api#solving_recaptchav2_new)</sup>

Use the following method to solve reCAPTCHA V2 and obtain a token to bypass the protection.

```python 
result = solver.recaptcha(sitekey='6Le-wvkSVVABCPBMRTvw0Q4Muexq1bi0DJwx_mJ-',
                          url='https://mysite.com/page/with/recaptcha',
                          param1=..., ...)
```

### reCAPTCHA v3

<sup>[API method description.](https://2captcha.com/2captcha-api#solving_recaptchav3)</sup>

This method provides a reCAPTCHA V3 solver and returns a token.
```python
result = solver.recaptcha(sitekey='6Le-wvkSVVABCPBMRTvw0Q4Muexq1bi0DJwx_mJ-',
                            url='https://mysite.com/page/with/recaptcha',
                            version='v3',
                            param1=..., ...)
```

### FunCaptcha

<sup>[API method description.](https://2captcha.com/2captcha-api#solving_funcaptcha_new)</sup>

FunCaptcha (Arkoselabs) solving method. Returns a token.
```python
result = solver.funcaptcha(sitekey='6Le-wvkSVVABCPBMRTvw0Q4Muexq1bi0DJwx_mJ-',
                            url='https://mysite.com/page/with/funcaptcha',
                            param1=..., ...)

```


### GeeTest

<sup>[API method description.](https://2captcha.com/2captcha-api#solving_geetest)</sup>

Method to solve GeeTest puzzle captcha. Returns a set of tokens as JSON.
```python
result = solver.geetest(gt='f1ab2cdefa3456789012345b6c78d90e',
                        challenge='12345678abc90123d45678ef90123a456b',
                        url='https://www.site.com/page/',
                        param1=..., ...)

```


### GeeTest v4

<sup>[API method description.](https://2captcha.com/2captcha-api#geetest-v4)</sup>

Use this method to solve GeeTest v4. Returns the response in JSON.
```python
result = solver.geetest_v4(captcha_id='e392e1d7fd421dc63325744d5a2b9c73',
                            url='https://www.site.com/page/',  
                            param1=..., ...)

```


### hCaptcha

<sup>[API method description.](https://2captcha.com/2captcha-api#solving_hcaptcha)</sup>

Use this method to solve the hCaptcha challenge. Returns a token to bypass the captcha.
```python
result = solver.hcaptcha(sitekey='10000000-ffff-ffff-ffff-000000000001',
                            url='https://www.site.com/page/', 
                            param1=..., ...)

```


### Lemin Cropped Captcha

<sup>[API method description.](https://2captcha.com/2captcha-api#lemin)</sup>

Use this method to solve the Lemin captcha. Returns JSON with an answer containing the following values: answer, challenge_id.
```python
result = solver.lemin(captcha_id='CROPPED_1abcd2f_a1234b567c890d12ef3a456bc78d901d',
                            div_id='lemin-cropped-captcha', 
                            url='https://www.site.com/page/',
                            param1=..., ...)

```


### Cloudflare Turnstile

<sup>[API method description.](https://2captcha.com/2captcha-api#turnstile)</sup>

Use this method to solve Cloudflare Turnstile. Returns JSON with the token.
```python
result = solver.turnstile(sitekey='0x1AAAAAAAAkg0s2VIOD34y5',
                            url='http://mysite.com/', 
                            data='foo',
                            pagedata='bar',
                            action='challenge',
                            useragent='Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36')
```

### Amazon WAF

<sup>[API method description.](https://2captcha.com/2captcha-api#amazon-waf)</sup>

Use this method to solve Amazon WAF Captcha also known as AWS WAF Captcha is a part of Intelligent threat mitigation for Amazon AWS. Returns JSON with the token.
```python
result = solver.amazon_waf(sitekey='0x1AAAAAAAAkg0s2VIOD34y5',
                            iv='CgAHbCe2GgAAAAAj', 
                            context='9BUgmlm48F92WUoqv97a49ZuEJJ50TCk9MVr3C7WMtQ0X6flVbufM4n8mjFLmbLVAPgaQ1Jydeaja94iAS49ljb+sUNLoukWedAQZKrlY4RdbOOzvcFqmD/ZepQFS9N5w15Exr4VwnVq+HIxTsDJwRviElWCdzKDebN/mk8/eX2n7qJi5G3Riq0tdQw9+C4diFZU5E97RSeahejOAAJTDqduqW6uLw9NsjJBkDRBlRjxjn5CaMMo5pYOxYbGrM8Un1JH5DMOLeXbq1xWbC17YSEoM1cRFfTgOoc+VpCe36Ai9Kc='
                            url='https://non-existent-example.execute-api.us-east-1.amazonaws.com/latest'
                            param1=..., ...)

```


### KeyCaptcha

<sup>[API method description.](https://2captcha.com/2captcha-api#solving_keycaptcha)</sup>

Token-based method to solve KeyCaptcha.
```python
result = solver.keycaptcha(s_s_c_user_id=10,
    				   s_s_c_session_id='493e52c37c10c2bcdf4a00cbc9ccd1e8',
    				   s_s_c_web_server_sign='9006dc725760858e4c0715b835472f22-pz-',
    				   s_s_c_web_server_sign2='2ca3abe86d90c6142d5571db98af6714',
    				   url='https://www.keycaptcha.ru/demo-magnetic/', 
    				   param1=..., ...)

```


### atbCAPTCHA

<sup>[API method description.](https://2captcha.com/2captcha-api#atb-captcha)</sup>

Use this method to solve atbCaptcha challenge. Returns a token to bypass the captcha.
```python
result = solver.atb_captcha(app_id='af25e409b33d722a95e56a230ff8771c',
                            api_server='https://cap.aisecurius.com',
                            url='http://mysite.com/', 
                            param1=..., ...)

```


### Capy

<sup>[API method description.](https://2captcha.com/2captcha-api#solving_capy)</sup>

Token-based method to bypass Capy puzzle captcha.
```python
result = solver.capy(sitekey='PUZZLE_Abc1dEFghIJKLM2no34P56q7rStu8v',
                     url='http://mysite.com/',
                     api_server='https://jp.api.capy.me/',
                     param1=..., ...)
```
### Grid

<sup>[API method description.](https://2captcha.com/2captcha-api#grid)</sup>

The grid method was originally called the Old reCAPTCHA V2 method. The method can be used to bypass any type of captcha where you can apply a grid on an image and click specific grid boxes. Returns numbers of boxes.

```python
result = solver.grid('path/to/captcha.jpg', param1=..., ...)
```

### Canvas

<sup>[API method description.](https://2captcha.com/2captcha-api#canvas)</sup>

The canvas method can be used when you need to draw a line around an object on an image. Returns a set of points' coordinates to draw a polygon.

```python
result = solver.canvas('path/to/captcha.jpg', param1=..., ...)
```

### ClickCaptcha

<sup>[API method description.](https://2captcha.com/2captcha-api#coordinates)</sup>

The ClickCaptcha method returns the coordinates of points on the captcha image. It can be used if you need to click on particular points in the image.

```python
result = solver.coordinates('path/to/captcha.jpg', param1=..., ...)
```

### Rotate

<sup>[API method description.](https://2captcha.com/2captcha-api#solving_rotatecaptcha)</sup>

This method can be used to solve a captcha that asks to rotate an object. It is mostly used to bypass FunCaptcha. Returns the rotation angle.

```python
result = solver.rotate('path/to/captcha.jpg', param1=..., ...)
```

### MTCaptcha

<sup>[API method description.](https://2captcha.com/2captcha-api#mtcaptcha)</sup>

Use this method to solve MTCaptcha and obtain a token to bypass the protection.
```python
result = solver.mtcaptcha(sitekey='MTPublic-KzqLY1cKH',
                          url='https://2captcha.com/demo/mtcaptcha',
                          param1=..., ...)
```

### Friendly Captcha

<sup>[API method description.](https://2captcha.com/2captcha-api#friendly-captcha)</sup>

Friendly Captcha solving method. Returns a token.

> [!IMPORTANT]
> To successfully use the received token, the captcha widget must not be loaded on the page. To do this, you need to abort request to `/friendlycaptcha/...module.min.js` on the page. When the captcha widget is already loaded on the page, there is a high probability that the received token will not work.

```python
result = solver.friendly_captcha(sitekey='FCMGEMUD2KTDSQ5H',
                                 url='https://friendlycaptcha.com/demo',
                                 param1=..., ...)
```

### Cutcaptcha

<sup>[API method description.](https://2captcha.com/2captcha-api#cutcaptcha)</sup>

Use this method to solve Cutcaptcha. Returns the response in JSON.
```python
result = solver.cutcaptcha(misery_key='ad52c87af17e2ec09b8d918c9f00416b1cb8c320',
                           apikey='SAs61IAI',
                           url='https://mysite.com/page/with/cutcaptcha',
                           param1=..., ...)
```

### Tencent

<sup>[API method description.](https://2captcha.com/2captcha-api#tencent)</sup>

Use this method to solve Cutcaptcha. Returns a token.
```python
result = solver.tencent(app_id="197326679",
                        url="https://mysite.com/page/with/tencent",
                        param1=..., ...)
```

### DataDome

<sup>[API method description.](https://2captcha.com/2captcha-api#datadome)</sup>

Use this method to solve DataDome captcha.

> [!IMPORTANT]
> To solve the DataDome captcha, you must use a proxy. It is recommended to use [residential proxies].

```python
result = solver.datadome(captcha_url="https://geo.captcha-delivery.com/captcha/?initialCid=...",
                         pageurl="https://mysite.com/page/with/datadome",
                         userAgent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36",
                         proxy={
                            'type': 'HTTP',
                            'uri': 'login:password@IP_address:PORT'
                         },
                         param1=..., ...)
```

### CyberSiARA

<sup>[API method description.](https://2captcha.com/2captcha-api#cybersiara)</sup>

Use this method to solve CyberSiARA. Returns a token.
```python
result = solver.cybersiara(master_url_id='tpjOCKjjpdzv3d8Ub2E9COEWKt1vl1Mv',
                           pageurl='https://demo.mycybersiara.com/',
                           userAgent='Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36',
                           param1=..., ...)
```

## Other methods

### send / get_result
These methods can be used for manual captcha submission and answer polling. The `send()` method supports sending any captcha 
type, to specify the captcha type you must send value `method` manually, for example `method='hcaptcha'` for solving hCapthca. 
You can find the value of the `method` parameter in the [API documentation](https://2captcha.com/2captcha-api).

Example for solving Normal captcha manually:
```python
import time
. . . . . 


id = solver.send(file='path/to/captcha.jpg')
time.sleep(20)

code = solver.get_result(id)
```
Example for solving hCaptcha manually:
```python
import time
. . . . . 
id = solver.send(sitekey='41b778e7-8f20-45cc-a804-1f1ebb45c579',
                 url='https://2captcha.com/demo/hcaptcha?difficulty=easy',
                 method='hcaptcha')
print(id)
time.sleep(20)
code = solver.get_result(id)
```

### balance

<sup>[API method description.](https://2captcha.com/2captcha-api#additional-methods)</sup>

Use this method to get your account's balance
```python
balance = solver.balance()
```

### report

<sup>[API method description.](https://2captcha.com/2captcha-api#complain)</sup>

Use this method to report good or bad captcha answers.
```python
solver.report(id, True) # captcha solved correctly
solver.report(id, False) # captcha solved incorrectly
```

## Error handling
In case of an error, the captcha solver throws an exception. It's important to properly handle these cases. We recommend using `try except` to handle exceptions.
The list of all errors can be found in the  [API documentation](https://2captcha.com/2captcha-api#list-of-inphp-errors).
```python
try:
    result = solver.text('If tomorrow is Saturday, what day is today?')
except ValidationException as e:
    # invalid parameters passed
	print(e)
except NetworkException as e:
	# network error occurred
	print(e)
except ApiException as e:
    # api respond with error
	print(e)
except TimeoutException as e:
    # captcha is not solved so far
	print(e)
```


## Proxies

You can pass your proxy as an additional argument for the following methods: recaptcha, funcaptcha, geetest, geetest v4, hcaptcha, 
keycaptcha, capy puzzle, lemin, atbcaptcha, turnstile, amazon waf, mtcaptcha, friendly captcha, cutcaptcha, Tencent, DataDome, cybersiara. 


The proxy will be forwarded to the API to solve the captcha.

We have our own proxies that we can offer you. [Buy residential proxies] to avoid restrictions and blocks. [Quick start].

```python
proxy={
    'type': 'HTTPS',
    'uri': 'login:password@IP_address:PORT'
}
```

## Async calls
You can also make async calls with [asyncio], for example:

```python
import asyncio
import concurrent.futures
from twocaptcha import TwoCaptcha

API_KEY = "YOUR_API_KEY"
image = "data:image/png;base64,iVBORw0KGgoA..."

async def captchaSolver(image):
    loop = asyncio.get_running_loop()
    with concurrent.futures.ThreadPoolExecutor() as pool:
        result = await loop.run_in_executor(pool, lambda: TwoCaptcha(API_KEY).normal(image))
        return result

captcha_result = asyncio.run(captchaSolver(image))
```
## Examples
Examples of solving all supported captcha types are located in the [examples] directory.

## Examples using Selenium
Also we have a [separate repository](https://github.com/2captcha/captcha-solver-selenium-python-examples) you can find examples of captcha solving using [Selenium](https://pypi.org/project/selenium/) library. At the moment we have implemented examples of bypassing [reCAPTCHA](https://github.com/2captcha/captcha-solver-selenium-python-examples/tree/main/examples/reCAPTCHA), [hCaptcha](https://github.com/2captcha/captcha-solver-selenium-python-examples/tree/main/examples/hCaptcha), [normal captcha](https://github.com/2captcha/captcha-solver-selenium-python-examples/tree/main/examples/normal_captcha) (image captcha) and [text captcha](https://github.com/2captcha/captcha-solver-selenium-python-examples/tree/main/examples/text_captcha) using Selenium.

## Useful articles

- Amazon captcha solver: Code example for bypassing the [Amazon captcha](https://2captcha.com/blog/amazon-captcha-solving)
- [Captcha bypass in Selenium](https://2captcha.com/blog/captcha-bypass-in-selenium)

## Get in touch

<a href="mailto:support@2captcha.com"><img src="https://github.com/user-attachments/assets/539df209-7c85-4fa5-84b4-fc22ab93fac7" width="80" height="30"></a>
<a href="https://2captcha.com/support/tickets/new"><img src="https://github.com/user-attachments/assets/be044db5-2e67-46c6-8c81-04b78bd99650" width="81" height="30"></a>

## Join the team 👪

There are many ways to contribute, of which development is only one! Find your next job. Open positions: AI experts, scrapers, developers, technical support, and much more! 😍

<a href="mailto:job@2captcha.com"><img src="https://github.com/user-attachments/assets/36d23ef5-7866-4841-8e17-261cc8a4e033" width="80" height="30"></a>


## License

The code in this repository is licensed under the MIT License. See the [LICENSE](./LICENSE) file for more details.

### Graphics and Trademarks

The graphics and trademarks included in this repository are not covered by the MIT License. Please contact <a href="mailto:support@2captcha.com">support</a> for permissions regarding the use of these materials.


<!-- Shared links for README.md -->
[2Captcha]: https://2captcha.com/
[2captcha software catalog]: https://2captcha.com/software
[pingback settings]: https://2captcha.com/setting/pingback
[post options]: https://2captcha.com/2captcha-api#normal_post
[list of supported languages]: https://2captcha.com/2captcha-api#language
[examples directory]: /examples
[asyncio]: https://docs.python.org/3/library/asyncio.html
[Buy residential proxies]: https://2captcha.com/proxy/residential-proxies
[Quick start]: https://2captcha.com/proxy?openAddTrafficModal=true
[examples]: ./examples
[residential proxies]: https://2captcha.com/proxy/residential-proxies

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/2captcha/2captcha-python/",
    "name": "2captcha-python",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "2captcha, captcha, api, captcha solver, reCAPTCHA, hCaptcha, FunCaptcha, Geetest, image captcha, Coordinates, Click Captcha, Geetest V4, Lemin captcha, Amazon WAF, Cloudflare Turnstile, Capy Puzzle, MTCaptcha, Friendly Captcha, Tencent, Cutcaptcha, DataDome, cybersiara",
    "author": "2Captcha",
    "author_email": "info@2captcha.com",
    "download_url": "https://files.pythonhosted.org/packages/a8/25/0d2544a3e2fe11acef99143016523f7187727b9f0b57ed1e08cd2ec50e0a/2captcha_python-1.5.0.tar.gz",
    "platform": null,
    "description": "<a href=\"https://github.com/2captcha/2captcha-python\"><img src=\"https://github.com/user-attachments/assets/a737d428-5233-4605-9d09-211fa213d069\" width=\"82\" height=\"30\"></a>\n<a href=\"https://github.com/2captcha/2captcha-javascript\"><img src=\"https://github.com/user-attachments/assets/4d3b4541-34b2-4ed2-a687-d694ce67e5a6\" width=\"36\" height=\"30\"></a>\n<a href=\"https://github.com/2captcha/2captcha-go\"><img src=\"https://github.com/user-attachments/assets/ab22182e-6cb2-41fa-91f4-d5e89c6d7c6f\" width=\"63\" height=\"30\"></a>\n<a href=\"https://github.com/2captcha/2captcha-ruby\"><img src=\"https://github.com/user-attachments/assets/0270d56f-79b0-4c95-9b09-4de89579914b\" width=\"75\" height=\"30\"></a>\n<a href=\"https://github.com/2captcha/2captcha-cpp\"><img src=\"https://github.com/user-attachments/assets/36de8512-acfd-44fb-bb1f-b7c793a3f926\" width=\"45\" height=\"30\"></a>\n<a href=\"https://github.com/2captcha/2captcha-php\"><img src=\"https://github.com/user-attachments/assets/e8797843-3f61-4fa9-a155-ab0b21fb3858\" width=\"52\" height=\"30\"></a>\n<a href=\"https://github.com/2captcha/2captcha-java\"><img src=\"https://github.com/user-attachments/assets/a3d923f6-4fec-4c07-ac50-e20da6370911\" width=\"50\" height=\"30\"></a>\n<a href=\"https://github.com/2captcha/2captcha-csharp\"><img src=\"https://github.com/user-attachments/assets/f4d449de-780b-49ed-bb0a-b70c82ec4b32\" width=\"38\" height=\"30\"></a>\n\n# Python Module for 2Captcha API (captcha solver)\n\nThe easiest way to quickly integrate the [2Captcha] captcha-solving service into your code and automate the solving of any type of captcha.\nExamples of API requests for different captcha types are available on the [Python captcha solver](https://2captcha.com/lang/python) page.\n\n- [Python Module for 2Captcha API (captcha solver)](#python-module-for-2captcha-api-captcha-solver)\n  - [Installation](#installation)\n  - [Configuration](#configuration)\n    - [TwoCaptcha instance options](#twocaptcha-instance-options)\n  - [Solve captcha](#solve-captcha)\n    - [Captcha options](#captcha-options)\n    - [Normal Captcha](#normal-captcha)\n    - [Audio Captcha](#audio-captcha)\n    - [Text Captcha](#text-captcha)\n    - [reCAPTCHA v2](#recaptcha-v2)\n    - [reCAPTCHA v3](#recaptcha-v3)\n    - [FunCaptcha](#funcaptcha)\n    - [GeeTest](#geetest)\n    - [GeeTest v4](#geetest-v4)\n    - [hCaptcha](#hcaptcha)\n    - [Lemin Cropped Captcha](#lemin-cropped-captcha)\n    - [Cloudflare Turnstile](#cloudflare-turnstile)\n    - [Amazon WAF](#amazon-waf)\n    - [KeyCaptcha](#keycaptcha)\n    - [atbCAPTCHA](#atbcaptcha)\n    - [Capy](#capy)\n    - [Grid](#grid)\n    - [Canvas](#canvas)\n    - [ClickCaptcha](#clickcaptcha)\n    - [Rotate](#rotate)\n    - [MTCaptcha](#mtcaptcha)\n    - [Friendly Captcha](#friendly-captcha)\n    - [Cutcaptcha](#cutcaptcha)\n    - [Tencent](#tencent)\n    - [Datadome](#datadome)\n    - [CyberSiARA](#cybersiara)\n  - [Other methods](#other-methods)\n    - [send / get\\_result](#send--get_result)\n    - [balance](#balance)\n    - [report](#report)\n  - [Error handling](#error-handling)\n  - [Proxies](#proxies)\n  - [Async calls](#async-calls)\n  - [Examples](#examples)\n  - [Examples using Selenium](#examples-using-selenium)\n  - [Useful articles](#useful-articles)\n  - [Get in touch](#get-in-touch)\n  - [Join the team \ud83d\udc6a](#join-the-team-)\n  - [License](#license)\n    - [Graphics and Trademarks](#graphics-and-trademarks)\n\n## Installation\n\nThis package can be installed with Pip:\n\n```bash\npip3 install 2captcha-python\n```\n\n\n## Configuration\n\nTwoCaptcha instance can be created like this:\n\n```python \nfrom twocaptcha import TwoCaptcha\n\nsolver = TwoCaptcha('YOUR_API_KEY')\n```\nAlso, there are a few options that can be configured:\n\n```python \nconfig = {\n            'server':           '2captcha.com',\n            'apiKey':           'YOUR_API_KEY',\n            'softId':            123,\n            'callback':         'https://your.site/result-receiver',\n            'defaultTimeout':    120,\n            'recaptchaTimeout':  600,\n            'pollingInterval':   10,\n        }\nsolver = TwoCaptcha(**config)\n```\n\n### TwoCaptcha instance options\n\n| Option           | Default value  | Description                                                                                                                                            |\n| ---------------- | -------------- |--------------------------------------------------------------------------------------------------------------------------------------------------------|\n| server           | `2captcha.com` | API server. You can set it to `rucaptcha.com` if your account is registered there                                                                      |\n| softId           | 4580           | your software ID obtained after publishing in [2captcha software catalog]                                                                              |\n| callback         | -              | URL of your web server that receives the captcha recognition result. The URL should be first registered in [pingback settings] of your account         |\n| defaultTimeout   | 120            | Polling timeout in seconds for all captcha types except reCAPTCHA. Defines how long the module tries to get the answer from the `res.php` API endpoint |\n| recaptchaTimeout | 600            | Polling timeout for reCAPTCHA in seconds. Defines how long the module tries to get the answer from the `res.php` API endpoint                          |\n| pollingInterval  | 10             | Interval in seconds between requests to the `res.php` API endpoint. Setting values less than 5 seconds is not recommended                              |\n| extendedResponse | None           | Set to `True` to get the response with additional fields or in more practical format (enables `JSON` response from `res.php` API endpoint). Suitable for [hCaptcha](#hcaptcha), [ClickCaptcha](#clickcaptcha), [Canvas](#canvas) |\n\n\n> [!IMPORTANT]\n> Once `callback` is defined for the `TwoCaptcha` instance, all methods return only the captcha ID and DO NOT poll the API to get the result. The result will be sent to the callback URL.\n\nTo get the answer manually use [get_result method](#send--get_result)\n\n## Solve captcha\nWhen you submit any image-based CAPTCHA, you can provide additional options to help 2captcha workers solve it properly.\n\n### Captcha options\n| Option        | Default Value | Description                                                                                        |\n| ------------- | ------------- | -------------------------------------------------------------------------------------------------- |\n| numeric       | 0             | Defines if the captcha contains numeric or other symbols [see more info in the API docs][post options] |\n| minLen        | 0             | minimal answer length                                                                              |\n| maxLen        | 0             | maximum answer length                                                                              |\n| phrase        | 0             | defines if the answer contains multiple words or not                                               |\n| caseSensitive | 0             | defines if the answer is case sensitive                                                            |\n| calc          | 0             | defines captcha requires calculation                                                               |\n| lang          | -             | defines the captcha language; see the [list of supported languages]                                |\n| hintImg       | -             | an image with a hint shown to workers with the captcha                                               |\n| hintText      | -             | hint or task text shown to workers with the captcha                                                |\n\nBelow, you can find basic examples for every captcha type. Check out [examples directory] for more examples with all available options.\n\n### Normal Captcha\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#solving_normal_captcha)</sup>\n\nTo bypass a normal captcha (distorted text on an image) use the following method. This method can also be used to recognize any text in an image.\n\n```python \nresult = solver.normal('path/to/captcha.jpg', param1=..., ...)\n# OR\nresult = solver.normal('https://site-with-captcha.com/path/to/captcha.jpg', param1=..., ...)\n```\n\n### Audio Captcha\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#audio)</sup>\n\nUse the following method to bypass an audio captcha (mp3 formats only). \nYou must provide the language as `lang = 'en'`. Supported languages are \"en\", \"ru\", \"de\", \"el\", \"pt\", \"fr\".\n\n```python \nresult = solver.audio('path/to/captcha.mp3', lang = 'lang', param1=..., ...)\n# OR\nresult = solver.audio('https://site-with-captcha.com/path/to/captcha.mp3', lang = 'lang', param1=..., ...)\n```\n\n### Text Captcha\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#solving_text_captcha)</sup>\n\nThis method can be used to bypass a captcha that requires answering a question provided in clear text.\n```python \nresult = solver.text('If tomorrow is Saturday, what day is today?', param1=..., ...)\n```\n\n### reCAPTCHA v2\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#solving_recaptchav2_new)</sup>\n\nUse the following method to solve reCAPTCHA V2 and obtain a token to bypass the protection.\n\n```python \nresult = solver.recaptcha(sitekey='6Le-wvkSVVABCPBMRTvw0Q4Muexq1bi0DJwx_mJ-',\n                          url='https://mysite.com/page/with/recaptcha',\n                          param1=..., ...)\n```\n\n### reCAPTCHA v3\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#solving_recaptchav3)</sup>\n\nThis method provides a reCAPTCHA V3 solver and returns a token.\n```python\nresult = solver.recaptcha(sitekey='6Le-wvkSVVABCPBMRTvw0Q4Muexq1bi0DJwx_mJ-',\n                            url='https://mysite.com/page/with/recaptcha',\n                            version='v3',\n                            param1=..., ...)\n```\n\n### FunCaptcha\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#solving_funcaptcha_new)</sup>\n\nFunCaptcha (Arkoselabs) solving method. Returns a token.\n```python\nresult = solver.funcaptcha(sitekey='6Le-wvkSVVABCPBMRTvw0Q4Muexq1bi0DJwx_mJ-',\n                            url='https://mysite.com/page/with/funcaptcha',\n                            param1=..., ...)\n\n```\n\n\n### GeeTest\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#solving_geetest)</sup>\n\nMethod to solve GeeTest puzzle captcha. Returns a set of tokens as JSON.\n```python\nresult = solver.geetest(gt='f1ab2cdefa3456789012345b6c78d90e',\n                        challenge='12345678abc90123d45678ef90123a456b',\n                        url='https://www.site.com/page/',\n                        param1=..., ...)\n\n```\n\n\n### GeeTest v4\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#geetest-v4)</sup>\n\nUse this method to solve GeeTest v4. Returns the response in JSON.\n```python\nresult = solver.geetest_v4(captcha_id='e392e1d7fd421dc63325744d5a2b9c73',\n                            url='https://www.site.com/page/',  \n                            param1=..., ...)\n\n```\n\n\n### hCaptcha\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#solving_hcaptcha)</sup>\n\nUse this method to solve the hCaptcha challenge. Returns a token to bypass the captcha.\n```python\nresult = solver.hcaptcha(sitekey='10000000-ffff-ffff-ffff-000000000001',\n                            url='https://www.site.com/page/', \n                            param1=..., ...)\n\n```\n\n\n### Lemin Cropped Captcha\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#lemin)</sup>\n\nUse this method to solve the Lemin captcha. Returns JSON with an answer containing the following values: answer, challenge_id.\n```python\nresult = solver.lemin(captcha_id='CROPPED_1abcd2f_a1234b567c890d12ef3a456bc78d901d',\n                            div_id='lemin-cropped-captcha', \n                            url='https://www.site.com/page/',\n                            param1=..., ...)\n\n```\n\n\n### Cloudflare Turnstile\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#turnstile)</sup>\n\nUse this method to solve Cloudflare Turnstile. Returns JSON with the token.\n```python\nresult = solver.turnstile(sitekey='0x1AAAAAAAAkg0s2VIOD34y5',\n                            url='http://mysite.com/', \n                            data='foo',\n                            pagedata='bar',\n                            action='challenge',\n                            useragent='Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36')\n```\n\n### Amazon WAF\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#amazon-waf)</sup>\n\nUse this method to solve Amazon WAF Captcha also known as AWS WAF Captcha is a part of Intelligent threat mitigation for Amazon AWS. Returns JSON with the token.\n```python\nresult = solver.amazon_waf(sitekey='0x1AAAAAAAAkg0s2VIOD34y5',\n                            iv='CgAHbCe2GgAAAAAj', \n                            context='9BUgmlm48F92WUoqv97a49ZuEJJ50TCk9MVr3C7WMtQ0X6flVbufM4n8mjFLmbLVAPgaQ1Jydeaja94iAS49ljb+sUNLoukWedAQZKrlY4RdbOOzvcFqmD/ZepQFS9N5w15Exr4VwnVq+HIxTsDJwRviElWCdzKDebN/mk8/eX2n7qJi5G3Riq0tdQw9+C4diFZU5E97RSeahejOAAJTDqduqW6uLw9NsjJBkDRBlRjxjn5CaMMo5pYOxYbGrM8Un1JH5DMOLeXbq1xWbC17YSEoM1cRFfTgOoc+VpCe36Ai9Kc='\n                            url='https://non-existent-example.execute-api.us-east-1.amazonaws.com/latest'\n                            param1=..., ...)\n\n```\n\n\n### KeyCaptcha\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#solving_keycaptcha)</sup>\n\nToken-based method to solve KeyCaptcha.\n```python\nresult = solver.keycaptcha(s_s_c_user_id=10,\n    \t\t\t\t   s_s_c_session_id='493e52c37c10c2bcdf4a00cbc9ccd1e8',\n    \t\t\t\t   s_s_c_web_server_sign='9006dc725760858e4c0715b835472f22-pz-',\n    \t\t\t\t   s_s_c_web_server_sign2='2ca3abe86d90c6142d5571db98af6714',\n    \t\t\t\t   url='https://www.keycaptcha.ru/demo-magnetic/', \n    \t\t\t\t   param1=..., ...)\n\n```\n\n\n### atbCAPTCHA\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#atb-captcha)</sup>\n\nUse this method to solve atbCaptcha challenge. Returns a token to bypass the captcha.\n```python\nresult = solver.atb_captcha(app_id='af25e409b33d722a95e56a230ff8771c',\n                            api_server='https://cap.aisecurius.com',\n                            url='http://mysite.com/', \n                            param1=..., ...)\n\n```\n\n\n### Capy\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#solving_capy)</sup>\n\nToken-based method to bypass Capy puzzle captcha.\n```python\nresult = solver.capy(sitekey='PUZZLE_Abc1dEFghIJKLM2no34P56q7rStu8v',\n                     url='http://mysite.com/',\n                     api_server='https://jp.api.capy.me/',\n                     param1=..., ...)\n```\n### Grid\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#grid)</sup>\n\nThe grid method was originally called the Old reCAPTCHA V2 method. The method can be used to bypass any type of captcha where you can apply a grid on an image and click specific grid boxes. Returns numbers of boxes.\n\n```python\nresult = solver.grid('path/to/captcha.jpg', param1=..., ...)\n```\n\n### Canvas\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#canvas)</sup>\n\nThe canvas method can be used when you need to draw a line around an object on an image. Returns a set of points' coordinates to draw a polygon.\n\n```python\nresult = solver.canvas('path/to/captcha.jpg', param1=..., ...)\n```\n\n### ClickCaptcha\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#coordinates)</sup>\n\nThe ClickCaptcha method returns the coordinates of points on the captcha image. It can be used if you need to click on particular points in the image.\n\n```python\nresult = solver.coordinates('path/to/captcha.jpg', param1=..., ...)\n```\n\n### Rotate\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#solving_rotatecaptcha)</sup>\n\nThis method can be used to solve a captcha that asks to rotate an object. It is mostly used to bypass FunCaptcha. Returns the rotation angle.\n\n```python\nresult = solver.rotate('path/to/captcha.jpg', param1=..., ...)\n```\n\n### MTCaptcha\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#mtcaptcha)</sup>\n\nUse this method to solve MTCaptcha and obtain a token to bypass the protection.\n```python\nresult = solver.mtcaptcha(sitekey='MTPublic-KzqLY1cKH',\n                          url='https://2captcha.com/demo/mtcaptcha',\n                          param1=..., ...)\n```\n\n### Friendly Captcha\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#friendly-captcha)</sup>\n\nFriendly Captcha solving method. Returns a token.\n\n> [!IMPORTANT]\n> To successfully use the received token, the captcha widget must not be loaded on the page. To do this, you need to abort request to `/friendlycaptcha/...module.min.js` on the page. When the captcha widget is already loaded on the page, there is a high probability that the received token will not work.\n\n```python\nresult = solver.friendly_captcha(sitekey='FCMGEMUD2KTDSQ5H',\n                                 url='https://friendlycaptcha.com/demo',\n                                 param1=..., ...)\n```\n\n### Cutcaptcha\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#cutcaptcha)</sup>\n\nUse this method to solve Cutcaptcha. Returns the response in JSON.\n```python\nresult = solver.cutcaptcha(misery_key='ad52c87af17e2ec09b8d918c9f00416b1cb8c320',\n                           apikey='SAs61IAI',\n                           url='https://mysite.com/page/with/cutcaptcha',\n                           param1=..., ...)\n```\n\n### Tencent\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#tencent)</sup>\n\nUse this method to solve Cutcaptcha. Returns a token.\n```python\nresult = solver.tencent(app_id=\"197326679\",\n                        url=\"https://mysite.com/page/with/tencent\",\n                        param1=..., ...)\n```\n\n### DataDome\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#datadome)</sup>\n\nUse this method to solve DataDome captcha.\n\n> [!IMPORTANT]\n> To solve the DataDome captcha, you must use a proxy. It is recommended to use [residential proxies].\n\n```python\nresult = solver.datadome(captcha_url=\"https://geo.captcha-delivery.com/captcha/?initialCid=...\",\n                         pageurl=\"https://mysite.com/page/with/datadome\",\n                         userAgent=\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36\",\n                         proxy={\n                            'type': 'HTTP',\n                            'uri': 'login:password@IP_address:PORT'\n                         },\n                         param1=..., ...)\n```\n\n### CyberSiARA\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#cybersiara)</sup>\n\nUse this method to solve CyberSiARA. Returns a token.\n```python\nresult = solver.cybersiara(master_url_id='tpjOCKjjpdzv3d8Ub2E9COEWKt1vl1Mv',\n                           pageurl='https://demo.mycybersiara.com/',\n                           userAgent='Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36',\n                           param1=..., ...)\n```\n\n## Other methods\n\n### send / get_result\nThese methods can be used for manual captcha submission and answer polling. The `send()` method supports sending any captcha \ntype, to specify the captcha type you must send value `method` manually, for example `method='hcaptcha'` for solving hCapthca. \nYou can find the value of the `method` parameter in the [API documentation](https://2captcha.com/2captcha-api).\n\nExample for solving Normal captcha manually:\n```python\nimport time\n. . . . . \n\n\nid = solver.send(file='path/to/captcha.jpg')\ntime.sleep(20)\n\ncode = solver.get_result(id)\n```\nExample for solving hCaptcha manually:\n```python\nimport time\n. . . . . \nid = solver.send(sitekey='41b778e7-8f20-45cc-a804-1f1ebb45c579',\n                 url='https://2captcha.com/demo/hcaptcha?difficulty=easy',\n                 method='hcaptcha')\nprint(id)\ntime.sleep(20)\ncode = solver.get_result(id)\n```\n\n### balance\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#additional-methods)</sup>\n\nUse this method to get your account's balance\n```python\nbalance = solver.balance()\n```\n\n### report\n\n<sup>[API method description.](https://2captcha.com/2captcha-api#complain)</sup>\n\nUse this method to report good or bad captcha answers.\n```python\nsolver.report(id, True) # captcha solved correctly\nsolver.report(id, False) # captcha solved incorrectly\n```\n\n## Error handling\nIn case of an error, the captcha solver throws an exception. It's important to properly handle these cases. We recommend using `try except` to handle exceptions.\nThe list of all errors can be found in the  [API documentation](https://2captcha.com/2captcha-api#list-of-inphp-errors).\n```python\ntry:\n    result = solver.text('If tomorrow is Saturday, what day is today?')\nexcept ValidationException as e:\n    # invalid parameters passed\n\tprint(e)\nexcept NetworkException as e:\n\t# network error occurred\n\tprint(e)\nexcept ApiException as e:\n    # api respond with error\n\tprint(e)\nexcept TimeoutException as e:\n    # captcha is not solved so far\n\tprint(e)\n```\n\n\n## Proxies\n\nYou can pass your proxy as an additional argument for the following methods: recaptcha, funcaptcha, geetest, geetest v4, hcaptcha, \nkeycaptcha, capy puzzle, lemin, atbcaptcha, turnstile, amazon waf, mtcaptcha, friendly captcha, cutcaptcha, Tencent, DataDome, cybersiara. \n\n\nThe proxy will be forwarded to the API to solve the captcha.\n\nWe have our own proxies that we can offer you. [Buy residential proxies] to avoid restrictions and blocks. [Quick start].\n\n```python\nproxy={\n    'type': 'HTTPS',\n    'uri': 'login:password@IP_address:PORT'\n}\n```\n\n## Async calls\nYou can also make async calls with [asyncio], for example:\n\n```python\nimport asyncio\nimport concurrent.futures\nfrom twocaptcha import TwoCaptcha\n\nAPI_KEY = \"YOUR_API_KEY\"\nimage = \"data:image/png;base64,iVBORw0KGgoA...\"\n\nasync def captchaSolver(image):\n    loop = asyncio.get_running_loop()\n    with concurrent.futures.ThreadPoolExecutor() as pool:\n        result = await loop.run_in_executor(pool, lambda: TwoCaptcha(API_KEY).normal(image))\n        return result\n\ncaptcha_result = asyncio.run(captchaSolver(image))\n```\n## Examples\nExamples of solving all supported captcha types are located in the [examples] directory.\n\n## Examples using Selenium\nAlso we have a [separate repository](https://github.com/2captcha/captcha-solver-selenium-python-examples) you can find examples of captcha solving using [Selenium](https://pypi.org/project/selenium/) library. At the moment we have implemented examples of bypassing [reCAPTCHA](https://github.com/2captcha/captcha-solver-selenium-python-examples/tree/main/examples/reCAPTCHA), [hCaptcha](https://github.com/2captcha/captcha-solver-selenium-python-examples/tree/main/examples/hCaptcha), [normal captcha](https://github.com/2captcha/captcha-solver-selenium-python-examples/tree/main/examples/normal_captcha) (image captcha) and [text captcha](https://github.com/2captcha/captcha-solver-selenium-python-examples/tree/main/examples/text_captcha) using Selenium.\n\n## Useful articles\n\n- Amazon captcha solver: Code example for bypassing the [Amazon captcha](https://2captcha.com/blog/amazon-captcha-solving)\n- [Captcha bypass in Selenium](https://2captcha.com/blog/captcha-bypass-in-selenium)\n\n## Get in touch\n\n<a href=\"mailto:support@2captcha.com\"><img src=\"https://github.com/user-attachments/assets/539df209-7c85-4fa5-84b4-fc22ab93fac7\" width=\"80\" height=\"30\"></a>\n<a href=\"https://2captcha.com/support/tickets/new\"><img src=\"https://github.com/user-attachments/assets/be044db5-2e67-46c6-8c81-04b78bd99650\" width=\"81\" height=\"30\"></a>\n\n## Join the team \ud83d\udc6a\n\nThere are many ways to contribute, of which development is only one! Find your next job. Open positions: AI experts, scrapers, developers, technical support, and much more! \ud83d\ude0d\n\n<a href=\"mailto:job@2captcha.com\"><img src=\"https://github.com/user-attachments/assets/36d23ef5-7866-4841-8e17-261cc8a4e033\" width=\"80\" height=\"30\"></a>\n\n\n## License\n\nThe code in this repository is licensed under the MIT License. See the [LICENSE](./LICENSE) file for more details.\n\n### Graphics and Trademarks\n\nThe graphics and trademarks included in this repository are not covered by the MIT License. Please contact <a href=\"mailto:support@2captcha.com\">support</a> for permissions regarding the use of these materials.\n\n\n<!-- Shared links for README.md -->\n[2Captcha]: https://2captcha.com/\n[2captcha software catalog]: https://2captcha.com/software\n[pingback settings]: https://2captcha.com/setting/pingback\n[post options]: https://2captcha.com/2captcha-api#normal_post\n[list of supported languages]: https://2captcha.com/2captcha-api#language\n[examples directory]: /examples\n[asyncio]: https://docs.python.org/3/library/asyncio.html\n[Buy residential proxies]: https://2captcha.com/proxy/residential-proxies\n[Quick start]: https://2captcha.com/proxy?openAddTrafficModal=true\n[examples]: ./examples\n[residential proxies]: https://2captcha.com/proxy/residential-proxies\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Python module for easy integration with 2Captcha API",
    "version": "1.5.0",
    "project_urls": {
        "Homepage": "https://github.com/2captcha/2captcha-python/"
    },
    "split_keywords": [
        "2captcha",
        " captcha",
        " api",
        " captcha solver",
        " recaptcha",
        " hcaptcha",
        " funcaptcha",
        " geetest",
        " image captcha",
        " coordinates",
        " click captcha",
        " geetest v4",
        " lemin captcha",
        " amazon waf",
        " cloudflare turnstile",
        " capy puzzle",
        " mtcaptcha",
        " friendly captcha",
        " tencent",
        " cutcaptcha",
        " datadome",
        " cybersiara"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ae181e839e6f0550f3029e2aa6d921320af224b661f5068a854ea0c6e0171e6",
                "md5": "d608b3a98cc730b5ad6f9874208423a8",
                "sha256": "139cafc7ef60c0f3cea5b95c6c4211e50aedd602ea489cc21b32b49425a62f73"
            },
            "downloads": -1,
            "filename": "2captcha_python-1.5.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d608b3a98cc730b5ad6f9874208423a8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 17742,
            "upload_time": "2024-08-30T13:34:42",
            "upload_time_iso_8601": "2024-08-30T13:34:42.785973Z",
            "url": "https://files.pythonhosted.org/packages/3a/e1/81e839e6f0550f3029e2aa6d921320af224b661f5068a854ea0c6e0171e6/2captcha_python-1.5.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a8250d2544a3e2fe11acef99143016523f7187727b9f0b57ed1e08cd2ec50e0a",
                "md5": "a3a858398c2ceed3ca05c71a33ca05cf",
                "sha256": "afafed5d4045f9d343a65be4b424c510622025891a07e87a0ee2432a17078296"
            },
            "downloads": -1,
            "filename": "2captcha_python-1.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a3a858398c2ceed3ca05c71a33ca05cf",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 29252,
            "upload_time": "2024-08-30T13:34:44",
            "upload_time_iso_8601": "2024-08-30T13:34:44.272201Z",
            "url": "https://files.pythonhosted.org/packages/a8/25/0d2544a3e2fe11acef99143016523f7187727b9f0b57ed1e08cd2ec50e0a/2captcha_python-1.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-30 13:34:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "2captcha",
    "github_project": "2captcha-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "2captcha-python"
}
        
Elapsed time: 0.34498s