xtn-tools-pro 1.0.0.4.3__tar.gz → 1.0.0.4.5__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.4.3/xtn_tools_pro.egg-info → xtn-tools-pro-1.0.0.4.5}/PKG-INFO +1 -1
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/setup.py +1 -1
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/task_pro/go_fun.py +5 -3
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5/xtn_tools_pro.egg-info}/PKG-INFO +1 -1
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/LICENSE +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/README.md +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/setup.cfg +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/db/MongoDB.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/db/MysqlDB.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/db/RedisDB.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/db/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/proxy/XiaoXiangProxy.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/proxy/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/proxy/proxy.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/task_pro/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/tools.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/crypto.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/file_utils.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/helpers.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/log.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/retry.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/sql.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/time_utils.py +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro.egg-info/SOURCES.txt +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro.egg-info/dependency_links.txt +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro.egg-info/requires.txt +0 -0
- {xtn-tools-pro-1.0.0.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro.egg-info/top_level.txt +0 -0
@@ -88,9 +88,11 @@ class GoFun:
|
|
88
88
|
args=(download_queue, upload_queue, proxies_dict,
|
89
89
|
self.__ini_info, go_task_function, logger))
|
90
90
|
go_task_fun_process.start()
|
91
|
+
go_task_fun_process.join()
|
91
92
|
|
92
93
|
download_task_process.join()
|
93
94
|
|
95
|
+
|
94
96
|
def __get_external_ip(self, logger):
|
95
97
|
"""
|
96
98
|
获取当前网络ip
|
@@ -103,7 +105,7 @@ class GoFun:
|
|
103
105
|
logger.warning(f"当前网络ip --> {rp_json}")
|
104
106
|
return rp_json['origin']
|
105
107
|
except Exception as e:
|
106
|
-
|
108
|
+
logger.critical(f"获取当前网络ip{e}")
|
107
109
|
|
108
110
|
def _download_and_upload_task(self, download_queue, upload_queue, proxies_dict, ini_info,logger):
|
109
111
|
"""
|
@@ -202,7 +204,7 @@ class GoFun:
|
|
202
204
|
}
|
203
205
|
result_list.append(task_item)
|
204
206
|
except Exception as e:
|
205
|
-
|
207
|
+
logger.critical(f"循环全部获取队列的任务{e}")
|
206
208
|
|
207
209
|
# 回写任务
|
208
210
|
data = {"result": result_list, "remoteAddr": external_ip}
|
@@ -304,7 +306,7 @@ class GoFun:
|
|
304
306
|
processes_start_list = []
|
305
307
|
|
306
308
|
except Exception as e:
|
307
|
-
|
309
|
+
logger.critical(f"_go_task_fun_task-{e}")
|
308
310
|
|
309
311
|
def _run_with_timeout(self, download_queue, upload_queue, proxies_dict, thread_num, logger, go_task_function):
|
310
312
|
caller = inspect.stack()[1] # 获取调用者的调用栈信息
|
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.4.3 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|