From 9e188a8c34257c739a6bdbd270f0fe5dda1d4094 Mon Sep 17 00:00:00 2001 From: Andrei Date: Sun, 21 Oct 2018 20:15:46 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B8=D0=B5=20=D1=84=D0=B0=D0=B9=D0=BB=D0=B0=20=D0=BA?= =?UTF-8?q?=D0=BE=D0=BD=D1=84=D0=B8=D0=B3=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Исправление ключа приложения Добавление TODO для проверки работы fake-useragent --- python3_anticaptcha/config.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python3_anticaptcha/config.py b/python3_anticaptcha/config.py index 10c0c3a..e23e0e5 100644 --- a/python3_anticaptcha/config.py +++ b/python3_anticaptcha/config.py @@ -9,9 +9,10 @@ incorrect_captcha_url = "https://api.anti-captcha.com/reportIncorrectImageCaptch # Адрес для получения информации об очереди get_queue_status_url = "https://api.anti-captcha.com/getQueueStats" # ключ приложения -app_key = "1899" +app_key = "867" # random user agent data # получаем рандомный userAgent +# TODO протестировать `fake_useragent` на исправление старых беспричинных падений и обновить получение данных from fake_useragent import UserAgent try: user_agent_data = UserAgent().random