赞
踩
Python中调用Win32API 通常都是使用 PyWin32或者ctypes。但要么依赖文件较多,要么用法繁琐。
这里介绍在Python中调用Win32 API 或者COM组件的另一个更好的,功能也更强大的解决方案。
首先需要确保安装的是 32位的Python(2.x 或者 3.x 均可)。
下载通用库:win32exts for Python:
https://github.com/tankaishuai/win32exts_for_Python
将win32exts.pyd 放入 Python/DLLs 目录下即可。发布时 仅有此一个文件而已。
import win32exts
(1)常规具名函数(以MessageBoxA/W为例)调用:
首先需要导入模块符号。第一个参数为待加载的模块名,可以带路径,传入"*"表示当前进程的所有模块;
第二个参数表示函数符号名称,传入"*"表示该模块的所有符号。
win32exts.load_sym("*", "*")
或 win32exts.load_sym("C:\\windows\\system32\\user32.dll", "MessageBoxW")
或 win32exts.load_sym("user32", "MessageBoxA")
或 win32exts.load_sym("user32", "*")
然后:
win32exts.MessageBoxA(0, "call MessageBoxA", "", 1)
宽字符需要用 win32exts.L() 包装,与C/C++雷同。
win32exts.MessageBoxW(0, win32exts.L("call MessageBoxW"), None, 1)
(2)带回调的函数(以EnumWindows为例)调用:
先分配一块内存后面用:
g_buf = win32exts.malloc(2*260)
定义一个回调函数:
def EnumWndProc(args):
#【args为参数包,以下取参数】
hWnd = win32exts.arg(args, 1)
lParam = win32exts.arg(args, 2)
win32exts.GetWindowTextW(hWnd, g_buf, 260)
#【读取内存中的宽字符串】
#【read_***系列接口读内存,write_***系列接口写内存】
strText = win32exts.read_wstring(g_buf, 0, -1)
win32exts.MessageBoxW(0, win32exts.L(strText), g_buf, 1)
strRetVal = "1, 8"
g_index = g_index + 1
if g_index > 3: #【假设只弹框三次】
strRetVal = "0, 8"
#【返回值是形如这样的字符串: "回调返回值, 参数字节数",
# 对于 cdecl 调用约定,参数字节数总是取 0 】
return strRetVal
然后调用:
win32exts.EnumWindows(win32exts.callback("EnumWndProc"), 0)
win32exts.callback()用于包装一个Python回调函数。
(3)匿名(非具名)函数调用:
假设通过某个接口获取了某函数的地址 lFuncAddr,然后可以类似下述方式调用:
win32exts.push_value(arg1) 【参数是整数】
win32exts.push_wstring("arg2") 【参数是宽字符串】
win32exts.push_astring(arg3) 【参数是多字节字符串】
win32exts.push_double(arg4) 【参数是双精度浮点数】
win32exts.push_float(arg5) 【参数是单精度浮点数】
iRetVal = win32exts.call( lFuncAddr )
当然具名函数也可以类似调用,例如:
win32exts.push_value(0)
win32exts.push_astring("Py_MessageBoxA_V1")
win32exts.push_value(0)
win32exts.push_value(0)
iRetVal = win32exts.sym_call("MessageBoxA") #【或用 func_call】
(4)调用COM组件:
import win32exts
win32exts.load_sym("ole32", "*")
#
# 测试 COM 组件, 打开计算器
#
wsh = win32exts.co_create_object("Wscript.Shell")
win32exts.va_invoke( wsh, "Run", "calc" )
win32exts.co_release(wsh)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。