Excel Utilities
check_excel_dependencies
Check if the required Excel dependencies (openpyxl and pillow) are installed.
Returns
bool: True if dependencies are installed, False otherwise.
ExcelManager
Class for managing Excel workbook operations, formatting, and branding. Parameters (constructor)min_column_width(int): Minimum column width (default: 12).max_column_width(int): Maximum column width (default: 75).row_offset(int): Row offset for data (default: 3).column_offset(int): Column offset for data (default: 1).
save_workbook(df_args, workbook_path): Save DataFrames to an Excel workbook.beautify_workbook(workbook_path): Apply formatting to an Excel workbook.

