File size: 346 Bytes
1538ec2
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import pandas as pd

def read_excel(file_path):
    try:
        return pd.read_excel(file_path).to_dict(orient="records")
    except Exception:
        return []

def write_excel(file_path, data):
    try:
        pd.DataFrame(data).to_excel(file_path, index=False)
    except Exception as e:
        print(f"Error writing to {file_path}: {e}")