From 2ce84f3784a2fc52ee25fc97b0fc3fdcfac896b3 Mon Sep 17 00:00:00 2001 From: Andrei Date: Mon, 30 Oct 2017 00:13:32 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D1=80=D0=B0=D0=B2=D0=BA=D0=B0=20=D1=80?= =?UTF-8?q?=D0=B8=D0=B4=D0=BC=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 34 ++++++++++------------------------ 1 file changed, 10 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index b360719..5d65e83 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ python setup.py install *** ### На данный момент реализованы следующие методы: -1.[Решение капчи-изображения.](https://github.com/AndreiDrang/python3-anticaptcha/blob/master/python3_anticaptcha/ImageToTextTask.py) +1.[Решение капчи-изображения.](https://github.com/AndreiDrang/python3-anticaptcha/blob/master/anticaptcha_examples/anticaptcah_image_to_text_example.py) Краткий пример: ```python @@ -41,25 +41,10 @@ user_answer = ImageToTextTask.ImageToTextTask(anticaptcha_key = ANTICAPTCHA_KEY) print(user_answer) ``` -2.[Решение новой ReCaptcha v2 с прокси.](https://github.com/AndreiDrang/python-rucaptcha/blob/master/python_rucaptcha/ReCaptchaV2.py) +2.[Решение новой ReCaptcha v2 с прокси.](https://github.com/AndreiDrang/python3-anticaptcha/blob/master/anticaptcha_examples/anticaptcha_nocaptcha_example.py) -Краткий пример: -```python -from python3_anticaptcha import NoCaptchaTask -# Введите ключ от сервиса AntiCaptcha, из своего аккаунта -ANTICAPTCHA_KEY = "" -# G-ReCaptcha ключ сайта -SITE_KEY = "" -# Ссылка на страницу с капчёй -PAGE_URL = "" -# Возвращается строка-расшифровка капчи -user_answer = NoCaptchaTask.NoCaptchaTask(rucaptcha_key=ANTICAPTCHA_KEY).captcha_handler(site_key=SITE_KEY, - page_url=PAGE_URL) -print(user_answer) -``` - -3.[Решение новой ReCaptcha v2 без прокси.](https://github.com/AndreiDrang/python3-anticaptcha/blob/master/python3_anticaptcha/NoCaptchaTaskProxyless.py) +3.[Решение новой ReCaptcha v2 без прокси.](https://github.com/AndreiDrang/python3-anticaptcha/blob/master/anticaptcha_examples/anticaptcha_nocaptcha_example.py) Краткий пример: ```python @@ -71,13 +56,14 @@ SITE_KEY = '6LeuMjIUAAAAAODtAglF13UiJys0y05EjZugej6b' # Ссылка на страницу с капчёй PAGE_URL = 'https://www.google.com/recaptcha/intro/android.html' # Возвращается строка-расшифровка капчи -user_answer = NoCaptchaTaskProxyless.NoCaptchaTaskProxyless(rucaptcha_key=ANTICAPTCHA_KEY).captcha_handler(websiteURL=PAGE_URL, - websiteKey=SITE_KEY) +user_answer = NoCaptchaTaskProxyless.NoCaptchaTaskProxyless(anticaptcha_key = ANTICAPTCHA_KEY)\ + .captcha_handler(websiteURL=PAGE_URL, + websiteKey=SITE_KEY) print(user_answer) ``` -4.[Решение FunCaptchaTask.](https://github.com/AndreiDrang/python-rucaptcha/blob/master/python_rucaptcha/RotateCaptcha.py) +4.[Решение FunCaptchaTask.](https://github.com/AndreiDrang/python3-anticaptcha/blob/master/anticaptcha_examples/anticaptcha_fun_example.py) Краткий пример: ```python @@ -90,16 +76,16 @@ SITE_KEY = '' PAGE_URL = '' # Возвращается строка с ключём для отправки на проверку user_answer = FunCaptchaTask.FunCaptchaTask(anticaptcha_key=ANTICAPTCHA_KEY, - proxyType="HTTP", + proxyType="http", proxyAddress="8.8.8.8", - proxyPort=8080) + proxyPort=8080)\ .captcha_handler(websiteURL=PAGE_URL, websitePublicKey=SITE_KEY) print(user_answer) ``` -5.[Модуль для получения инофрмации о балансе аккаунта и отправке жалоб.](https://github.com/AndreiDrang/python-rucaptcha/blob/master/python_rucaptcha/RuCaptchaControl.py) +5.[Модуль для получения инофрмации о балансе аккаунта и отправке жалоб.](https://github.com/AndreiDrang/python3-anticaptcha/blob/master/anticaptcha_examples/anticaptcha_control_example.py) Краткий пример: ```python