简体   繁体   中英

List of API commands for Win32api

I recently found the add-on for Python called "win32api". 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. 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. 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

If you need examples for some functions goto: C:\\Python27\\Lib\\site-packages\\win32\\Demos

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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