Jake
Jake

Reputation: 917

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.

Upvotes: 0

Views: 2616

Answers (2)

VRage
VRage

Reputation: 1496

visit the PyWin32 documentation site: Win32api docu

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

Upvotes: 0

Carl Düvel
Carl Düvel

Reputation: 1059

Just fire up the interpreter:

import moduleX
dir(moduleX)
help(moduleX)

Upvotes: 1

Related Questions