xtn-tools-pro 1.0.0.2.8__tar.gz → 1.0.0.2.9__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {xtn-tools-pro-1.0.0.2.8/xtn_tools_pro.egg-info → xtn-tools-pro-1.0.0.2.9}/PKG-INFO +1 -1
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/setup.py +1 -1
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/task_pro/go_fun.py +24 -3
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9/xtn_tools_pro.egg-info}/PKG-INFO +1 -1
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/LICENSE +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/README.md +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/setup.cfg +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/db/MongoDB.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/db/MysqlDB.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/db/RedisDB.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/db/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/proxy/XiaoXiangProxy.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/proxy/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/proxy/proxy.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/task_pro/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/tools.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/utils/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/utils/crypto.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/utils/file_utils.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/utils/helpers.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/utils/log.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/utils/retry.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/utils/sql.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro/utils/time_utils.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro.egg-info/SOURCES.txt +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro.egg-info/dependency_links.txt +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro.egg-info/requires.txt +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro.egg-info/top_level.txt +0 -0
@@ -141,9 +141,30 @@ class GoFun:
|
|
141
141
|
headers = {"Authorization": auto}
|
142
142
|
params = {"taskType": task}
|
143
143
|
while True:
|
144
|
-
|
145
|
-
|
146
|
-
|
144
|
+
# 判断队列是否有值
|
145
|
+
empty = queue.empty()
|
146
|
+
if empty:
|
147
|
+
time.sleep(2)
|
148
|
+
continue
|
149
|
+
|
150
|
+
# 循环全部获取队列的任务
|
151
|
+
result_list = []
|
152
|
+
try:
|
153
|
+
while True:
|
154
|
+
result_list.append(queue.get_nowait())
|
155
|
+
except Exception as e:
|
156
|
+
pass
|
157
|
+
|
158
|
+
# 回写任务
|
159
|
+
data = {"result": result_list, "remoteAddr": external_ip}
|
160
|
+
while True:
|
161
|
+
try:
|
162
|
+
resp = requests.post(upload_url, json=data, headers=headers, params=params, timeout=5)
|
163
|
+
json_data = resp.json()
|
164
|
+
logger.info(f"成功回写任务个数:{len(result_list)},{json_data}")
|
165
|
+
break
|
166
|
+
except Exception as e:
|
167
|
+
logger.critical(f"回写异常:{e}")
|
147
168
|
|
148
169
|
def _go_task_fun_task(self, download_queue, upload_queue, ini_info, go_task_function, logger):
|
149
170
|
"""
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.2.9}/xtn_tools_pro.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|