gpt4 book ai didi

python - 在 python 中使用 COM dll?

转载 作者:行者123 更新时间:2023-11-28 16:36:57 26 4
gpt4 key购买 nike

我需要在我的 python 项目中使用一个 COM dll(用 CSharp 制作)。我试着按照这个例子Using COM Objects in Scripting Languages -- Part 2 (Python) , 但我没有成功。

我的 python 代码是:

import sys

# for TkInter GUI support
from Tkinter import *
import tkMessageBox
import tkColorChooser

# for COM support
import comtypes.client as cc
import comtypes

# Load the typelibrary registered with the Windows registry
tlb_id = comtypes.GUID("{XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}")
cc.GetModule((tlb_id, 1, 0))

当我运行 python 类时,出现此错误:

> Traceback (most recent call last):   File "C:\Program Files
> (x86)\JetBrains\PyCharm 129.696\helpers\pydev\pydevd.py", line 1481,
> in <module>
> debugger.run(setup['file'], None, None) File "C:\Program Files (x86)\JetBrains\PyCharm 129.696\helpers\pydev\pydevd.py", line 1124,
> in run
> pydev_imports.execfile(file, globals, locals) #execute the script File "C:/aa_python/gtk_project/main.py", line 7, in <module>
> from com_class_file import ComClass File "C:/aa_python/gtk_project\com_class_file.py", line 15, in <module>
> cc.GetModule((tlb_id, 1, 0)) File "C:\Python27\lib\site-packages\comtypes-1.1.0-py2.7.egg\comtypes\client\_generate.py",
> line 101, in GetModule
> tlib = comtypes.typeinfo.LoadRegTypeLib(comtypes.GUID(tlib[0]), *tlib[1:]) File "C:\Python27\lib\site-packages\comtypes-1.1.0-py2.7.egg\comtypes\typeinfo.py",
> line 473, in LoadRegTypeLib
> _oleaut32.LoadRegTypeLib(byref(GUID(guid)), wMajorVerNum, wMinorVerNum, lcid, byref(tlib)) File "_ctypes/callproc.c", line
> 945, in GetResult WindowsError: [Error -2147319779] Library not registered

错误行:

cc.GetModule((tlb_id, 1, 0))

在我的 CSharp 项目中,我的 COM dll 中有这个:

界面

[InterfaceType(ComInterfaceType.InterfaceIsDual), Guid("YYYYYYYY-YYYY-YYYY-YYYY-YYYYYYYYYYYY")]
public interface ITestCOM
{
string say_hello();
}

[ClassInterface(ClassInterfaceType.None), Guid("XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX")]
public class TestCOM : ITestCOM
{
public string say_hello()
{
return "hello world!";
}
}

上面的这个 COM 项目在其他应用程序中使用并且工作正常。我的问题只在 python 中。

及时:我的 COM dll 已在 Windows 注册表中注册

有什么帮助吗?

最佳答案

在这里我找到了一个提示,它帮助我使用 TLB 文件使用我的 COM dll:

Accessing unregistered COM objects from python via a registered TLB

感谢 Márcio Faustino。

关于python - 在 python 中使用 COM dll?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24885750/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com