简体   繁体   English

Win32api的API命令列表

[英]List of API commands for Win32api

I recently found the add-on for Python called "win32api". 我最近找到了名为“ win32api”的Python附加组件。 I am very pleased with it.. But only problem is i can't seem to find any lists that list all the possible API calls that you can make from that add-on. 我对此感到非常满意。但是,唯一的问题是,我似乎找不到任何列表,该列表列出了您可以从该附件进行的所有可能的API调用。 I have tried looking through an API reference ( http://www.andreavb.com/API_List.html ), but most of the commands were not working, although some were. 我尝试浏览API参考( http://www.andreavb.com/API_List.html ),但是大多数命令无效,尽管有些有效。 Are there any other lists like that specifially for this add-on out there? 是否有其他类似的列表专门针对此插件? Or just general lists? 还是只是普通列表?

I hope someone can help, 我希望有人能帮帮忙,

Jake. 杰克

Just fire up the interpreter: 只需启动解释器:

import moduleX
dir(moduleX)
help(moduleX)

visit the PyWin32 documentation site: Win32api docu 请访问PyWin32文档站点: Win32api docu

If you need examples for some functions goto: C:\\Python27\\Lib\\site-packages\\win32\\Demos 如果需要一些功能的示例,请转到: C:\\Python27\\Lib\\site-packages\\win32\\Demos

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM