I'm trying to open an Excel file from Python. The code is:
import win32com.client
excelApp = win32com.client.Dispatch('Excel.Application')
book = excelApp.Open(os. getcwd() + '\Output ' + get_date() + '.csv')
but I'm getting this error: "AttributeError: Excel.Application.Open". Any idea how to fix it? Thanks!