Access data in Excel - Reuter from python

后端 未结 4 1943
[愿得一人]
[愿得一人] 2020-12-14 13:37

I\'m using Reuters integrated in Excel to retrieve market data. For task automation , I currently use VBA but now I want to switch to python. The package pyxll

4条回答
  •  粉色の甜心
    2020-12-14 13:59

    Try this -

    import os
    from win32com.client import GetObject
    
    os.startfile(r'C:\path\to\ReutersExcel.exe')
    xlApp = GetObject(None, 'Excel.Application')
    

提交回复
热议问题