We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4fb5c6 commit b69eae8Copy full SHA for b69eae8
nextcaptcha/__init__.py
@@ -3,4 +3,4 @@
3
4
5
6
-__version__ = '1.0.5'
+__version__ = '1.0.6'
nextcaptcha/next.py
@@ -82,12 +82,15 @@ def _send(self, task: dict) -> dict:
82
if self.open_log:
83
logging.info(f"Task status: {status}")
84
if status == READY_STATUS:
85
- logging.info(f"Task {task_id} ready {resp.json()}")
+ if self.open_log:
86
+ logging.info(f"Task {task_id} ready {resp.json()}")
87
return resp.json()
88
if status == FAILED_STATUS:
- logging.error(f"Task {task_id} failed {resp.json()}")
89
90
+ logging.error(f"Task {task_id} failed {resp.json()}")
91
- time.sleep(1)
92
+ time.sleep(0.5)
93
+
94
95
96
class NextCaptchaAPI:
0 commit comments