python3-anticaptcha/README.md

117 lines
5.8 KiB
Markdown
Raw Normal View History

2017-10-13 22:38:07 +00:00
# python3-anticaptcha
2017-10-11 18:36:36 +00:00
[![PyPI version](https://badge.fury.io/py/python3-anticaptcha.svg)](https://badge.fury.io/py/python3-anticaptcha)
[![Code Climate](https://codeclimate.com/github/AndreiDrang/python3-anticaptcha/badges/gpa.svg)](https://codeclimate.com/github/AndreiDrang/python3-anticaptcha)
2017-10-13 22:37:37 +00:00
Python 3 library for AntiCaptcha.
2017-10-11 18:36:36 +00:00
2018-04-21 23:18:17 +00:00
[Application in AppCenter](https://anti-captcha.com/clients/tools/appcenter/app/867).
Tested on UNIX based OS.
2017-10-13 22:37:37 +00:00
Библиотека предназначена для разрабаотчиков ПО и служит для облегчения работы с API сервиса AntiCaptcha.
2017-10-11 18:36:36 +00:00
## How to install? Как установить?
### pip
```bash
2017-10-13 22:37:37 +00:00
pip install python3-anticaptcha
2017-10-11 18:36:36 +00:00
```
### Source
```bash
2017-10-13 22:37:37 +00:00
git clone https://github.com/AndreiDrang/python3-anticaptcha.git
cd python3-anticaptcha
2017-10-11 18:36:36 +00:00
python setup.py install
```
***
По всем вопросам можете писать в [Telegram](https://t.me/joinchat/CD2EtQ5Pm0dmoSQQMTkVlw) чат.
With any questions, please contact us in [Telegram](https://t.me/joinchat/CD2EtQ5Pm0dmoSQQMTkVlw).
2017-10-11 18:36:36 +00:00
***
Присутствуют [примеры работы с библиотекой](https://github.com/AndreiDrang/python3-anticaptcha/tree/master/anticaptcha_examples).
Full examples you can find [here](https://github.com/AndreiDrang/python3-anticaptcha/tree/master/anticaptcha_examples).
***
### At the moment the following methods are implemented:
2017-10-11 18:36:36 +00:00
### На данный момент реализованы следующие методы:
2017-10-25 21:22:38 +00:00
1.[Image to text captcha. Решение капчи-изображения.](https://github.com/AndreiDrang/python3-anticaptcha/blob/master/anticaptcha_examples/anticaptcah_image_to_text_example.py)
2017-10-25 21:22:38 +00:00
Краткий пример:
```python
from python3_anticaptcha import ImageToTextTask
# Введите ключ от сервиса AntiCaptcha, из своего аккаунта. Anticaptcha service key.
2017-10-25 21:22:38 +00:00
ANTICAPTCHA_KEY = ""
# Ссылка на изображения для расшифровки. Link to captcha image.
2017-10-25 21:22:38 +00:00
image_link = "http://85.255.8.26/static/image/common_image_example/800070.png"
# Возвращается строка-расшифровка капчи. Get string for solve captcha, and some other info.
2017-10-25 21:22:38 +00:00
user_answer = ImageToTextTask.ImageToTextTask(anticaptcha_key = ANTICAPTCHA_KEY).captcha_handler(captcha_link=image_link)
print(user_answer)
```
2.[ReCaptcha v2 _with_ proxy. Решение новой ReCaptcha v2 с прокси.](https://github.com/AndreiDrang/python3-anticaptcha/blob/master/anticaptcha_examples/anticaptcha_nocaptcha_example.py)
2017-10-25 21:22:38 +00:00
3.[ReCaptcha v2 _without_ proxy. Решение новой ReCaptcha v2 без прокси.](https://github.com/AndreiDrang/python3-anticaptcha/blob/master/anticaptcha_examples/anticaptcha_nocaptcha_example.py)
2017-10-25 21:22:38 +00:00
Краткий пример:
```python
from python3_anticaptcha import NoCaptchaTaskProxyless
# Введите ключ от сервиса AntiCaptcha, из своего аккаунта. Anticaptcha service key.
2017-10-25 21:22:38 +00:00
ANTICAPTCHA_KEY = ""
# G-ReCaptcha ключ сайта. Website google key.
2017-10-25 21:22:38 +00:00
SITE_KEY = '6LeuMjIUAAAAAODtAglF13UiJys0y05EjZugej6b'
# Ссылка на страницу с капчёй. Page url.
2017-10-25 21:22:38 +00:00
PAGE_URL = 'https://www.google.com/recaptcha/intro/android.html'
# Возвращается строка-расшифровка капчи. Get string for solve captcha, and other info.
2017-10-29 21:13:32 +00:00
user_answer = NoCaptchaTaskProxyless.NoCaptchaTaskProxyless(anticaptcha_key = ANTICAPTCHA_KEY)\
.captcha_handler(websiteURL=PAGE_URL,
websiteKey=SITE_KEY)
2017-10-25 21:22:38 +00:00
print(user_answer)
```
4.[FunCaptcha. Решение FunCaptchaTask.](https://github.com/AndreiDrang/python3-anticaptcha/blob/master/anticaptcha_examples/anticaptcha_fun_example.py)
2017-10-25 21:22:38 +00:00
Краткий пример:
```python
from python3_anticaptcha import FunCaptchaTask
# Введите ключ от сервиса AntiCaptcha, из своего аккаунта. Anticaptcha service key.
2017-10-25 21:22:38 +00:00
ANTICAPTCHA_KEY = ""
# G-ReCaptcha ключ сайта
SITE_KEY = ''
# Ссылка на страницу с капчёй
PAGE_URL = ''
# Возвращается строка с ключём для отправки на проверку. Get full data for solve captcha.
2017-10-25 21:22:38 +00:00
user_answer = FunCaptchaTask.FunCaptchaTask(anticaptcha_key=ANTICAPTCHA_KEY,
2017-10-29 21:13:32 +00:00
proxyType="http",
2017-10-25 21:22:38 +00:00
proxyAddress="8.8.8.8",
2017-10-29 21:13:32 +00:00
proxyPort=8080)\
2017-10-25 21:22:38 +00:00
.captcha_handler(websiteURL=PAGE_URL,
websitePublicKey=SITE_KEY)
print(user_answer)
```
5.[Account management module. Модуль для получения инофрмации о балансе аккаунта и отправке жалоб.](https://github.com/AndreiDrang/python3-anticaptcha/blob/master/anticaptcha_examples/anticaptcha_control_example.py)
2017-10-25 21:22:38 +00:00
Краткий пример:
```python
from python3_anticaptcha import AntiCaptchaControl
# Введите ключ от сервиса AntiCaptcha, из своего аккаунта. Anticaptcha service key.
2017-10-25 21:22:38 +00:00
ANTICAPTCHA_KEY = ""
# Возвращается строка c балансом. Balance info.
2017-10-25 21:22:38 +00:00
user_answer = AntiCaptchaControl.AntiCaptchaControl(anticaptcha_key = ANTICAPTCHA_KEY).get_balance()
print(user_answer)
```
2017-10-11 18:36:36 +00:00
***
Кроме того, для тестирования различных типов капчи предоставляется [специальный сайт](http://85.255.8.26/), на котором собраны все имеющиеся типы капчи, с удобной системой тестирования ваших скриптов.
2017-10-25 21:22:38 +00:00
Some examples you can test with our [web-site](http://85.255.8.26/).