Commit 65f69e0f authored by liguangyu06's avatar liguangyu06
Browse files

新增期初导入脚本

parent 427ebaf0
......@@ -127,16 +127,14 @@ def l_gen1():
result = json.loads(result.content)
print(result)
# 创建多线程
threads = []
for _ in range(4):
t = threading.Thread(target=l_gen1())
threads.append(t)
t.start()
# 等待所有线程完成
for t in threads:
t.join()
# # 创建多线程
# threads = []
# for _ in range(4):
# t = threading.Thread(target=l_gen1())
# threads.append(t)
# t.start()
#
# # 等待所有线程完成
# for t in threads:
# t.join()
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment