我正在尝试通过COM对象与应用程序(数字显微照片)进行通信。这可以在LabView中工作,而我现在正尝试使用win32com在python中执行相同的操作。根据我在win32com中的实现方式,我遇到了一系列错误,这些错误实际上没有任何意义。
如果我遵循quick start guide并尝试使用win32com.client.Dispatch()
,尽管我知道makepy生成的模块具有方法,但我获得的对象除了win32com的默认值外没有其他方法或类。 / p>
import win32com.client
sendDMscript = win32com.client.Dispatch('COMExamplePlugIn.COMExampleInterface')
dir(sendDMscript)
仅返回
['_ApplyTypes_',
'_FlagAsMethod',
'_LazyAddAttr_',
'_NewEnum',
'_Release_',
'__AttrToID__',
'__LazyMap__',
'__bool__',
'__call__',
'__class__',
'__delattr__',
'__dict__',
'__dir__',
'__doc__',
'__eq__',
'__format__',
'__ge__',
'__getattr__',
'__getattribute__',
'__getitem__',
'__gt__',
'__hash__',
'__init__',
'__init_subclass__',
'__int__',
'__le__',
'__len__',
'__lt__',
'__module__',
'__ne__',
'__new__',
'__reduce__',
'__reduce_ex__',
'__repr__',
'__setattr__',
'__setitem__',
'__sizeof__',
'__str__',
'__subclasshook__',
'__weakref__',
'_builtMethods_',
'_enum_',
'_find_dispatch_type_',
'_get_good_object_',
'_get_good_single_object_',
'_lazydata_',
'_make_method_',
'_mapCachedItems_',
'_oleobj_',
'_olerepr_',
'_print_details_',
'_proc_',
'_unicode_to_string_',
'_username_',
'_wrap_dispatch_']
如果我改用gencache,则所需的类存在,但是在尝试创建它的实例时出现错误。
import win32com.client
sendDMscript_method = win32com.client.gencache.GetModuleForProgID('COMExamplePlugIn.COMExampleInterface').ICOMExampleInterface
instance = sendDMscript_method()
这将返回
---------------------------------------------------------------------------
com_error Traceback (most recent call last)
<ipython-input-4-55d05602784d> in <module>
----> 1 instance = sendDMscript()
~\Anaconda3\lib\site-packages\win32com\client\__init__.py in __init__(self, oobj)
429 def __init__(self, oobj=None):
430 if oobj is None:
--> 431 oobj = pythoncom.new(self.CLSID)
432 elif isinstance(oobj, DispatchBaseClass):
433 try:
com_error: (-2147221164, 'Class not registered', None, None)
我试图通过将正确的oobj作为参数传递给sendDMscript_method()
来解决该错误,这使我可以创建该类的实例,但最终在尝试运行时也会失败该类中的一种方法:
import win32com.client
from pywintypes import IID
sendDMscript_method = win32com.client.gencache.GetModuleForProgID('COMExamplePlugIn.COMExampleInterface').ICOMExampleInterface
CLSID = IID('{8C0B6A41-4ED2-4B44-B7B1-6492695B9C3D}')
instance = sendDMscript_method(CLSID)
instance.ExecuteScript(script='result("I did it")')
这会导致错误:
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
<ipython-input-8-8fdc545bf83d> in <module>
----> 1 instance.ExecuteScript(script='result("I did it")')
C:\Users\VALUED~1\AppData\Local\Temp\gen_py\3.7\8C0B6A41-4ED2-4B44-B7B1-6492695B9C3Dx0x2x0.py in ExecuteScript(self, script)
57 def ExecuteScript(self, script=defaultNamedNotOptArg):
58 'method ExecuteScript'
---> 59 return self._oleobj_.InvokeTypes(1, LCID, 1, (5, 0), ((8, 1),),script
60 )
61
AttributeError: 'PyIID' object has no attribute 'InvokeTypes'
当我搜索这些错误时,我看到人们谈论32位至64位问题。我正在Anaconda中使用32位python 3.7运行32位Windows 7,使用通过Anaconda安装的pywin32。我还使用从python.org安装的32位python 3.7和通过pip安装的pywin32测试了快速入门指南的方法,并得到了相同的第一个错误。我尝试与之通信的应用程序也是32位。有人知道怎么了吗?