Skip to content

Commit c65b51f

Browse files
Update README.md
1 parent f8f91ec commit c65b51f

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,11 @@ The easiest way to quickly integrate the [2Captcha] captcha-solving service into
3434
- [send / get_result](#send--get_result)
3535
- [balance](#balance)
3636
- [report](#report)
37-
- [Error handling](#error-handling)
38-
- [Proxies](#proxies)
39-
- [Async calls](#async-calls)
37+
- [Error handling](#error-handling)
38+
- [Proxies](#proxies)
39+
- [Async calls](#async-calls)
4040
- [Examples](#examples)
41+
- [Useful articles](#useful-articles)
4142

4243
## Installation
4344

@@ -439,7 +440,7 @@ solver.report(id, True) # captcha solved correctly
439440
solver.report(id, False) # captcha solved incorrectly
440441
```
441442

442-
### Error handling
443+
## Error handling
443444
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.
444445
The list of all errors can be found in the [API documentation](https://2captcha.com/2captcha-api#list-of-inphp-errors).
445446
```python
@@ -460,7 +461,7 @@ except TimeoutException as e:
460461
```
461462

462463

463-
### Proxies
464+
## Proxies
464465

465466
You can pass your proxy as an additional argument for the following methods: recaptcha, funcaptcha, geetest, geetest v4, hcaptcha,
466467
keycaptcha, capy puzzle, lemin, atbcaptcha, turnstile, amazon waf, mtcaptcha, friendly captcha, cutcaptcha.
@@ -476,7 +477,7 @@ proxy={
476477
}
477478
```
478479

479-
### Async calls
480+
## Async calls
480481
You can also make async calls with [asyncio], for example:
481482

482483
```python
@@ -495,7 +496,7 @@ async def captchaSolver(image):
495496

496497
captcha_result = asyncio.run(captchaSolver(image))
497498
```
498-
### Examples
499+
## Examples
499500
Examples of solving all supported captcha types are located in the [examples] directory.
500501

501502
## Useful articles

0 commit comments

Comments
 (0)