xtn-tools-pro 1.0.0.2.8__tar.gz → 1.0.0.3.0__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.3.0}/PKG-INFO +1 -1
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/setup.py +1 -1
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/task_pro/go_fun.py +35 -3
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0/xtn_tools_pro.egg-info}/PKG-INFO +1 -1
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/LICENSE +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/README.md +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/setup.cfg +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/db/MongoDB.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/db/MysqlDB.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/db/RedisDB.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/db/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/proxy/XiaoXiangProxy.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/proxy/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/proxy/proxy.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/task_pro/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/tools.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/utils/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/utils/crypto.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/utils/file_utils.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/utils/helpers.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/utils/log.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/utils/retry.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/utils/sql.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro/utils/time_utils.py +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro.egg-info/SOURCES.txt +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro.egg-info/dependency_links.txt +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro.egg-info/requires.txt +0 -0
- {xtn-tools-pro-1.0.0.2.8 → xtn-tools-pro-1.0.0.3.0}/xtn_tools_pro.egg-info/top_level.txt +0 -0
@@ -141,9 +141,41 @@ 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
|
+
task_item = queue.get_nowait()
|
155
|
+
taskNo = task_item["taskNo"]
|
156
|
+
phone = task_item["phone"]
|
157
|
+
isRegistered = task_item["isRegistered"]
|
158
|
+
country_region = task_item["country_region"]
|
159
|
+
full_phone = f"{country_region}{phone}"
|
160
|
+
task_item = {
|
161
|
+
'taskNo': taskNo,
|
162
|
+
'phone': full_phone,
|
163
|
+
'isRegistered': isRegistered
|
164
|
+
}
|
165
|
+
result_list.append(task_item)
|
166
|
+
except Exception as e:
|
167
|
+
pass
|
168
|
+
|
169
|
+
# 回写任务
|
170
|
+
data = {"result": result_list, "remoteAddr": external_ip}
|
171
|
+
while True:
|
172
|
+
try:
|
173
|
+
resp = requests.post(upload_url, json=data, headers=headers, params=params, timeout=5)
|
174
|
+
json_data = resp.json()
|
175
|
+
logger.info(f"成功回写任务个数:{len(result_list)},{json_data},{data}")
|
176
|
+
break
|
177
|
+
except Exception as e:
|
178
|
+
logger.critical(f"回写异常,{len(result_list)},{e}")
|
147
179
|
|
148
180
|
def _go_task_fun_task(self, download_queue, upload_queue, ini_info, go_task_function, logger):
|
149
181
|
"""
|
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.3.0}/xtn_tools_pro.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|