I am starting to use XLWings (not that I like Excel, at all, but it is something I HAVE TO do). The thing is that I cannot find the way to make Python open a Workbook without sh
Here is my working code fragment:
import xlwings excel_app = xlwings.App(visible=False) excel_book = excel_app.books.open('PATH_TO_YOUR_XLSX_FILE') excel_book.save() excel_book.close() excel_app.quit()