如何使用 Python win32com 中的所有默认加载项运行 excel
import win32com
import win32com.client as win32
xl = win32.gencache.EnsureDisplatch('Excel.Application')
这会启动 Excel,但无论出于何种原因,都不会加载任何插件。
如果 Excel 已加载,则插件将保持加载状态并可供访问。
请指教。
上下文:我正在从使用专有插件进行调用的工作表中抓取数据。如果插件未加载,我需要抓取的所有单元格都会抛出错误。
import win32com
import win32com.client as win32
xl = win32.gencache.EnsureDisplatch('Excel.Application')
This fires up Excel, but for whatever reason none of the plugins load.
If Excel was already loaded, the plugins will stay loaded and be accessible.
Please advise.
Context: I'm scraping data from a worksheet that makes calls using a proprietary plugin. If the plugin doesn't load, all the cells I need to scrape just throw errors.
也许您可以添加代码来访问宏中的插件,然后从 Python 自动化宏。
Perhaps you can add the code to access your plugin in a macro and then automate the macro from Python.