Hello,
how to use win32 API's in python? what is the best and easiest way to do it? can you please provide some examples?
thanks in advance
|
1
|
|||||||||||||||
|
|
|
PyWin32 is the way to go - but how to use it? One approach is to begin with a concrete problem you're having and attempting to solve it. PyWin32 provides bindings for the Win32 API functions for which there are many, and you really have to pick a specific goal first. In my Python 2.5 installation (ActiveState on Windows) the win32 package has a Demos folder packed with sample code of various parts of the library. For example, here's CopyFileEx.py:
It shows how to use the CopyFileEx function with a few others (such as GetTempPath and GetTempFileName). From this example you can get a "general feel" of how to work with this library. |
||
|
|
|
I imagine you'll want to use PyWin32. |
||||||
|
|
|
PyWin32, as mentioned by @chaos, is probably the most popular choice; the alternative is ctypes which is part of Python's standard library. For example, |
||
|
|
|
|
You may also want to check Python for Windows extension at SourceForge. |
||
|
|
|
|
PyWin32 doesn't have half the API. |
||
|
|