|
@@ -105,7 +105,7 @@ def get_daily_vx(st,et):
|
|
|
print("获取vx账号:",token_list_v.__len__())
|
|
|
|
|
|
time1 = time.time()
|
|
|
- executor = ThreadPoolExecutor(max_workers=20)
|
|
|
+ executor = ThreadPoolExecutor(max_workers=10)
|
|
|
li=[]
|
|
|
for y in token_list_v:
|
|
|
executor.submit(get_v_data,y,li,st,et)
|
|
@@ -119,7 +119,7 @@ def get_daily_qq(st,et):
|
|
|
print("获取qq账号:",token_list_q.__len__())
|
|
|
time1 = time.time()
|
|
|
li=[]
|
|
|
- executor = ThreadPoolExecutor(max_workers=20)
|
|
|
+ executor = ThreadPoolExecutor(max_workers=10)
|
|
|
for x in token_list_q:
|
|
|
|
|
|
executor.submit(get_q_data,x,li,st,et)
|