I want to open the Excel application using Python. I have tried using the method below however it doesn't load add-ins by default. I have seen solutions for .xla based add-ins. Unfortunately the add-in I want to use is .vsto. Is this possible?
from win32com.client import Dispatch
xl = Dispatch("Excel.Application")
xl.Visible = True