Commit 9c79b8e5 authored by liguangyu06's avatar liguangyu06
Browse files

新增期初导入脚本

parent 779736f8
...@@ -149,15 +149,14 @@ def l_gen1(): ...@@ -149,15 +149,14 @@ def l_gen1():
result = json.loads(result.content) result = json.loads(result.content)
print(result) print(result)
l_gen1()
# 创建多线程
# # 创建多线程 threads = []
# threads = [] for _ in range(4):
# for _ in range(4): t = threading.Thread(target=l_gen1())
# t = threading.Thread(target=l_gen1()) threads.append(t)
# threads.append(t) t.start()
# t.start()
# # 等待所有线程完成
# # 等待所有线程完成 for t in threads:
# for t in threads: t.join()
# 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