? ? ? ? 使用线程操作或者多个程序同时对同一个excel文件进行读写操作,不可避免的会操作冲突的问题,有没有一种方法就是可以不冲突,而是等待上一个程序使用完成后再对文件进行操作,就是等待一个完成再接着下一个?
? ? ? ? 使用线程锁,对资源进行控制
????????此处的锁一定是定义在函数外或使用的是global定义
import traceback
import threading
import pandas as pd
global_lock = threading.Lock()
def write_to_excel(file_path, info_dict):
"""
以df写入的字典的形式,追加写入文件中
:param file_path: 文件路径
:param info_dict: 需要写入的信息字典
:return:
"""
try:
global_lock.acquire()
if not os.path.exists(file_path):
df = pd.DataFrame()
df.to_excel(file_path, index=False)
df = pd.read_excel(file_path)
df = df._append(info_dict, ignore_index=True)
df["商品ID"] = df["商品ID"].astype(str)
df.to_excel(file_path, index=False)
except Exception as e:
print(traceback.format_exc())
finally:
global_lock.release()