xtn-tools-pro 1.0.0.3.2__tar.gz → 1.0.0.3.4__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.3.2/xtn_tools_pro.egg-info → xtn-tools-pro-1.0.0.3.4}/PKG-INFO +1 -1
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/setup.py +1 -1
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/task_pro/go_fun.py +19 -10
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4/xtn_tools_pro.egg-info}/PKG-INFO +1 -1
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/LICENSE +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/README.md +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/setup.cfg +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/db/MongoDB.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/db/MysqlDB.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/db/RedisDB.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/db/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/proxy/XiaoXiangProxy.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/proxy/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/proxy/proxy.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/task_pro/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/tools.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/utils/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/utils/crypto.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/utils/file_utils.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/utils/helpers.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/utils/log.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/utils/retry.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/utils/sql.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro/utils/time_utils.py +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro.egg-info/SOURCES.txt +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro.egg-info/dependency_links.txt +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro.egg-info/requires.txt +0 -0
- {xtn-tools-pro-1.0.0.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro.egg-info/top_level.txt +0 -0
@@ -130,17 +130,26 @@ class GoFun:
|
|
130
130
|
headers = {"Authorization": auto}
|
131
131
|
params = {"taskType": task}
|
132
132
|
while True:
|
133
|
-
|
134
|
-
|
135
|
-
|
133
|
+
try:
|
134
|
+
qsize = download_queue.qsize()
|
135
|
+
logger.info(f"获取任务,当前队列任务数:{qsize}")
|
136
|
+
if qsize >= 10:
|
137
|
+
time.sleep(2)
|
138
|
+
continue
|
139
|
+
resp = requests.get(download_url, headers=headers, params=params, timeout=5)
|
140
|
+
json_data = resp.json()
|
141
|
+
result_list = json_data.get("result", [])
|
142
|
+
|
143
|
+
if len(result_list) <= 0:
|
144
|
+
# 判断任务响应是否为空
|
145
|
+
time.sleep(2)
|
146
|
+
continue
|
147
|
+
for task_item in result_list:
|
148
|
+
download_queue.put(task_item)
|
149
|
+
logger.info(f"成功获取任务个数:{len(result_list)}")
|
150
|
+
except Exception as e:
|
151
|
+
logger.critical(f"获取任务请求异常:{e}")
|
136
152
|
time.sleep(2)
|
137
|
-
continue
|
138
|
-
resp = requests.get(download_url, headers=headers, params=params, timeout=5)
|
139
|
-
json_data = resp.json()
|
140
|
-
result_list = json_data.get("result", [])
|
141
|
-
for task_item in result_list:
|
142
|
-
download_queue.put(task_item)
|
143
|
-
logger.info(f"成功获取任务个数:{len(result_list)}")
|
144
153
|
|
145
154
|
def __upload_task(self, upload_queue, ini_info, logger):
|
146
155
|
"""
|
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.3.2 → xtn-tools-pro-1.0.0.3.4}/xtn_tools_pro.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|