I use Reuters integrated in Excel to get market data. To automate tasks, I am currently using VBA, but now I want to switch to python. The pyxll package pyxll not help much, because the principle is the same as VBA (I need to be inside Excel and press the RUN button ...) Therefore, I am considering using win32com to access Excel from the outside with a COM object. However, when I do this:
from win32com.client import Dispatch xlApp = Dispatch("Excel.Application")
This code opens a new instance of Excel in which there is no Reuter add-in (therefore, I cannot use the Reuter function to retrieve data). I don't know how to access excel-with-reuter instance from python? I looked at Com Explorer to examine the service, and I did not see any other service except Excel
source share