xtn-tools-pro 1.0.0.4.4__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.4/xtn_tools_pro.egg-info → xtn-tools-pro-1.0.0.4.5}/PKG-INFO +1 -1
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/setup.py +1 -1
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/task_pro/go_fun.py +3 -3
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5/xtn_tools_pro.egg-info}/PKG-INFO +1 -1
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/LICENSE +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/README.md +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/setup.cfg +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/db/MongoDB.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/db/MysqlDB.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/db/RedisDB.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/db/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/proxy/XiaoXiangProxy.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/proxy/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/proxy/proxy.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/task_pro/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/tools.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/crypto.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/file_utils.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/helpers.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/log.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/retry.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/sql.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro/utils/time_utils.py +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro.egg-info/SOURCES.txt +0 -0
- {xtn-tools-pro-1.0.0.4.4 → 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.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro.egg-info/requires.txt +0 -0
- {xtn-tools-pro-1.0.0.4.4 → xtn-tools-pro-1.0.0.4.5}/xtn_tools_pro.egg-info/top_level.txt +0 -0
@@ -105,7 +105,7 @@ class GoFun:
|
|
105
105
|
logger.warning(f"当前网络ip --> {rp_json}")
|
106
106
|
return rp_json['origin']
|
107
107
|
except Exception as e:
|
108
|
-
logger.critical(e)
|
108
|
+
logger.critical(f"获取当前网络ip{e}")
|
109
109
|
|
110
110
|
def _download_and_upload_task(self, download_queue, upload_queue, proxies_dict, ini_info,logger):
|
111
111
|
"""
|
@@ -204,7 +204,7 @@ class GoFun:
|
|
204
204
|
}
|
205
205
|
result_list.append(task_item)
|
206
206
|
except Exception as e:
|
207
|
-
logger.critical(e)
|
207
|
+
logger.critical(f"循环全部获取队列的任务{e}")
|
208
208
|
|
209
209
|
# 回写任务
|
210
210
|
data = {"result": result_list, "remoteAddr": external_ip}
|
@@ -306,7 +306,7 @@ class GoFun:
|
|
306
306
|
processes_start_list = []
|
307
307
|
|
308
308
|
except Exception as e:
|
309
|
-
logger.critical(e)
|
309
|
+
logger.critical(f"_go_task_fun_task-{e}")
|
310
310
|
|
311
311
|
def _run_with_timeout(self, download_queue, upload_queue, proxies_dict, thread_num, logger, go_task_function):
|
312
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.4 → 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
|