from ironxl import * # Load the Excel workbook workbook = WorkBook.Load("sample.xlsx") # Set author workbook.Metadata.Author = "Your Name" # Set comments workbook.Metadata.Comments = "Monthly report" # Set title workbook.Metadata.Title = "July" # Set keywords workbook.Metadata.Keywords = "Report" # Read the creation date of the Excel file creation_date = workbook.Metadata.Created # Read the last printed date of the Excel file print_date = workbook.Metadata.LastPrinted # Save the workbook with edited metadata workbook.SaveAs("editedMetadata.xlsx")