tags:

views:

43

answers:

1

Hi every one. 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.

+1  A: 

Just fire up the interpreter:

import moduleX
dir(moduleX)
help(moduleX)
hackbert
Thanks!! Perfect!
Jake