xtn-tools-pro 1.0.0.2.9__tar.gz → 1.0.0.3.1__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.9/xtn_tools_pro.egg-info → xtn-tools-pro-1.0.0.3.1}/PKG-INFO +1 -1
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/setup.py +1 -1
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/task_pro/go_fun.py +15 -4
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1/xtn_tools_pro.egg-info}/PKG-INFO +1 -1
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/LICENSE +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/README.md +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/setup.cfg +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/db/MongoDB.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/db/MysqlDB.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/db/RedisDB.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/db/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/proxy/XiaoXiangProxy.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/proxy/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/proxy/proxy.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/task_pro/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/tools.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/utils/__init__.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/utils/crypto.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/utils/file_utils.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/utils/helpers.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/utils/log.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/utils/retry.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/utils/sql.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro/utils/time_utils.py +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro.egg-info/SOURCES.txt +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro.egg-info/dependency_links.txt +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro.egg-info/requires.txt +0 -0
- {xtn-tools-pro-1.0.0.2.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro.egg-info/top_level.txt +0 -0
@@ -119,7 +119,7 @@ class GoFun:
|
|
119
119
|
while True:
|
120
120
|
qsize = download_queue.qsize()
|
121
121
|
logger.info(f"获取任务,当前队列任务数:{qsize}")
|
122
|
-
if
|
122
|
+
if qsize <= 10:
|
123
123
|
time.sleep(2)
|
124
124
|
continue
|
125
125
|
resp = requests.get(download_url, headers=headers, params=params, timeout=5)
|
@@ -151,7 +151,18 @@ class GoFun:
|
|
151
151
|
result_list = []
|
152
152
|
try:
|
153
153
|
while True:
|
154
|
-
|
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)
|
155
166
|
except Exception as e:
|
156
167
|
pass
|
157
168
|
|
@@ -161,10 +172,10 @@ class GoFun:
|
|
161
172
|
try:
|
162
173
|
resp = requests.post(upload_url, json=data, headers=headers, params=params, timeout=5)
|
163
174
|
json_data = resp.json()
|
164
|
-
logger.info(f"
|
175
|
+
logger.info(f"成功回写任务个数:{len(result_list)},{json_data},{data}")
|
165
176
|
break
|
166
177
|
except Exception as e:
|
167
|
-
logger.critical(f"
|
178
|
+
logger.critical(f"回写异常,{len(result_list)},{e}")
|
168
179
|
|
169
180
|
def _go_task_fun_task(self, download_queue, upload_queue, ini_info, go_task_function, logger):
|
170
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.9 → xtn-tools-pro-1.0.0.3.1}/xtn_tools_pro.egg-info/dependency_links.txt
RENAMED
File without changes
|
File without changes
|
File without changes
|