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
You can also try:
import xlwings as xw app = xw.App(visible=False) book = xw.Book('PATH_TO_YOUR_XLSX_FILE') sheet = book.sheets('sheetname') df = sheet.range('A1:D10) book.close() app.quit()