Refactor readme

This commit is contained in:
Andrei 2020-03-30 03:54:23 +03:00
parent bddb5b2ecd
commit c7f6430eae
1 changed files with 15 additions and 15 deletions

View File

@ -6,7 +6,7 @@
[![Build Status](https://travis-ci.org/AndreiDrang/python3-anticaptcha.svg?branch=master)](https://travis-ci.org/AndreiDrang/python3-anticaptcha)
[![Code Climate](https://codeclimate.com/github/AndreiDrang/python3-anticaptcha/badges/gpa.svg)](https://codeclimate.com/github/AndreiDrang/python3-anticaptcha)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/2daabf7ff7974f01b9348fe64483c7af)](https://app.codacy.com/app/drang.andray/python3-anticaptcha?utm_source=github.com&utm_medium=referral&utm_content=AndreiDrang/python3-anticaptcha&utm_campaign=Badge_Grade_Settings)
![Callback_Server_Status Run](https://img.shields.io/badge/Callback_Server_Status-Run-blue.svg)
Python 3.6 library for Anti-Captcha service.
@ -44,7 +44,7 @@ Full examples you can find [here](./anticaptcha_examples).
### At the moment the following methods are implemented:
### На данный момент реализованы следующие методы:
0.[Manual result handler.](./anticaptcha_examples/custom_result_handler_example.py)
##### 0.[Manual result handler.](./anticaptcha_examples/custom_result_handler_example.py)
```python
@ -61,7 +61,7 @@ custom_result = CustomResultHandler.CustomResultHandler(
user_answer = custom_result.task_handler(task_id=TASK_ID)
print(user_answer)
```
1.[Image to text captcha.](./anticaptcha_examples/anticaptcah_image_to_text_example.py)
##### 1.[Image to text captcha.](./anticaptcha_examples/anticaptcah_image_to_text_example.py)
```python
@ -77,10 +77,10 @@ user_answer = ImageToTextTask.ImageToTextTask(anticaptcha_key = ANTICAPTCHA_KEY)
print(user_answer)
```
2.[ReCaptcha v2.](./anticaptcha_examples/anticaptcha_nocaptcha_example.py)
##### 2.[ReCaptcha v2.](./anticaptcha_examples/anticaptcha_nocaptcha_example.py)
3.[ReCaptcha v2 Proxyless. ](./anticaptcha_examples/anticaptcha_nocaptcha_example.py) + [Selenium example](./anticaptcha_examples/selenium_recaptcha_v2.py)
##### 3.[ReCaptcha v2 Proxyless. ](./anticaptcha_examples/anticaptcha_nocaptcha_example.py) + [Selenium example](./anticaptcha_examples/selenium_recaptcha_v2.py)
```python
from python3_anticaptcha import NoCaptchaTaskProxyless
@ -98,7 +98,7 @@ user_answer = NoCaptchaTaskProxyless.NoCaptchaTaskProxyless(anticaptcha_key = AN
print(user_answer)
```
3.[ReCaptcha v3 Proxyless. ](./anticaptcha_examples/anticaptcha_nocaptcha_example.py)
##### 4.[ReCaptcha v3 Proxyless. ](./anticaptcha_examples/anticaptcha_nocaptcha_example.py)
```python
from python3_anticaptcha import ReCaptchaV3TaskProxyless
@ -124,9 +124,9 @@ user_answer = ReCaptchaV3TaskProxyless.ReCaptchaV3TaskProxyless(anticaptcha_key
print(user_answer)
```
4.[Fun Captcha.](./anticaptcha_examples/anticaptcha_fun_example.py)
##### 5.[Fun Captcha.](./anticaptcha_examples/anticaptcha_fun_example.py)
5.[Fun Captcha Proxyless.](./anticaptcha_examples/anticaptcha_fun_example.py)
##### 6.[Fun Captcha Proxyless.](./anticaptcha_examples/anticaptcha_fun_example.py)
```python
from python3_anticaptcha import FunCaptchaTask
@ -147,7 +147,7 @@ user_answer = FunCaptchaTask.FunCaptchaTask(anticaptcha_key=ANTICAPTCHA_KEY,
print(user_answer)
```
6.[Account management module.](./anticaptcha_examples/anticaptcha_control_example.py)
##### 7.[Account management module.](./anticaptcha_examples/anticaptcha_control_example.py)
```python
from python3_anticaptcha import AntiCaptchaControl
@ -159,7 +159,7 @@ user_answer = AntiCaptchaControl.AntiCaptchaControl(anticaptcha_key = ANTICAPTCH
print(user_answer)
```
7.[Custom Captcha.](./anticaptcha_examples/anticaptcha_customcaptcha_example.py)
##### 8.[Custom Captcha.](./anticaptcha_examples/anticaptcha_customcaptcha_example.py)
```python
from python3_anticaptcha import CustomCaptchaTask
@ -173,9 +173,9 @@ my_custom_task = CustomCaptchaTask.CustomCaptchaTask(anticaptcha_key=ANTICAPTCHA
print(my_custom_task)
```
8.[Gee Test.](./anticaptcha_examples/gee_example.py)
##### 9.[Gee Test.](./anticaptcha_examples/gee_example.py)
9.[Gee Test Proxyless.](./anticaptcha_examples/gee_example.py)
##### 10.[Gee Test Proxyless.](./anticaptcha_examples/gee_example.py)
```python
from python3_anticaptcha import GeeTestTaskProxyless
@ -194,9 +194,9 @@ result = GeeTestTaskProxyless.GeeTestTaskProxyless(anticaptcha_key=ANTICAPTCHA_K
print(result)
```
10.[HCaptcha.](./anticaptcha_examples/anticaptcha_hcaptcha_example.py)
##### 11.[HCaptcha.](./anticaptcha_examples/anticaptcha_hcaptcha_example.py)
11.[HCaptcha Proxyless.](./anticaptcha_examples/anticaptcha_hcaptcha_example.py)
##### 12.[HCaptcha Proxyless.](./anticaptcha_examples/anticaptcha_hcaptcha_example.py)
```python
from python3_anticaptcha import HCaptchaTaskProxyless
@ -216,7 +216,7 @@ print(result)
Some examples you can test with our [web-site](https://pythoncaptcha.cloud/).
***
For tests:
#### For tests:
1. Clon repo;
2. ```bash
export anticaptcha_key=SERVICE_KEY