Небольшие правки описания + новая версия

This commit is contained in:
Andrei 2017-10-29 23:24:55 +03:00
parent f1c8fe99e6
commit fec9978f9a
3 changed files with 4 additions and 21 deletions

View File

@ -13,7 +13,8 @@ class FunCaptchaTask:
:param proxyType: Тип прокси http/socks5/socks4
:param proxyAddress: Адрес прокси-сервера
:param proxyPort: Порт сервера
:param kwargs: Можно передать необязательные параметры и переопределить userAgent
:param kwargs: Можно передать необязательные параметры и переопределить userAgent, все необязательные параметры
описаны в документации к API на сайте антикапчи
"""
self.sleep_time = sleep_time

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='python3-anticaptcha',
version='0.9.8.b',
version='0.6',
author='AndreiDrang, redV0ID',
packages=['python3_anticaptcha'],
@ -10,6 +10,7 @@ setup(
'requests>=2.18',
],
description='Python 3 AntiCaptcha library.',
url='https://github.com/AndreiDrang/python3-anticaptcha',
author_email='drang.andray@gmail.com',
license='MIT',
keywords='''captcha

19
test.py
View File

@ -1,19 +0,0 @@
from python3_anticaptcha import ImageToTextTask, config, AntiCaptchaControl, FunCaptchaTask, NoCaptchaTaskProxyless
key = config.TEST_KEY
#print(ImageToTextTask.ImageToTextTask(key, save_format = 'const').captcha_handler('http://85.255.8.26/static/image/common_image_example/800070.png'))
#print(AntiCaptchaControl.AntiCaptchaControl(anticaptcha_key = config.TEST_KEY).complaint_on_result(reported_id = -5))
print(AntiCaptchaControl.AntiCaptchaControl(anticaptcha_key = config.TEST_KEY).get_balance())
'''
print(FunCaptchaTask.FunCaptchaTask(config.TEST_KEY,
proxyType='HTTP',
proxyAddress="8.8.8.8",
proxyPort=8080,
proxyLogin="proxyLoginHere",
proxyPassword="proxyPasswordHere")
.captcha_handler(websiteURL='85.450.48',
websitePublicKey='789456132'))
'''
print(NoCaptchaTaskProxyless.NoCaptchaTaskProxyless(anticaptcha_key=config.TEST_KEY)
.captcha_handler(websiteURL='https://www.google.com/recaptcha/intro/android.html',
websiteKey='6LeuMjIUAAAAAODtAglF13UiJys0y05EjZugej6b'))