gpt4 book ai didi

python - 使用 python 内省(introspection) DLL

转载 作者:行者123 更新时间:2023-12-01 06:19:02 25 4
gpt4 key购买 nike

我目前正在尝试使用 python 对 DLL 进行一些内省(introspection)。我想自动创建一个基于DLL的图形测试界面。

我可以很容易地在 python 中加载我的 DLL,并且调用一些函数。主要问题是,如果我在对象上调用“dir”而不调用任何方法,我就会得到结果

>>> dir(myLib)
['_FuncPtr', '__class__', '__delattr__', '__dict__', '__doc__',
'__format__', '__getattr__', '__getattribute__', '__getitem__', '__hash__', '__i
nit__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__s
etattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_func_fl
ags_', '_func_restype_', '_handle', '_name']

当我手动调用一个函数(如“Read_Version”)时,我得到了 dir 函数的结果

>>> dir(myLib)
['Read_Version', '_FuncPtr', '__class__', '__delattr__', '__dict__', '__doc__',
'__format__', '__getattr__', '__getattribute__', '__getitem__', '__hash__', '__i
nit__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__s
etattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_func_fl
ags_', '_func_restype_', '_handle', '_name']

看来内省(introspection)仅适用于我已经调用的函数,这并不是真正的“有用”;)。

您还有其他想法来获取 DLL 中的函数吗? (当然是用Python)

我在 Windows 下使用 python 2.6。

最佳答案

据我所知,没有简单的方法可以做到这一点。您必须使用一些外部工具(例如 link/dump/exports)或使用 PE/DLL 解析器(例如 pefile )。

关于python - 使用 python 内省(introspection) DLL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1642938/

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