vote up 3 vote down star
1

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

flag
1  
Just wondering, did you search at all? google.com/search?q=python+win32+api – musicfreak Jun 21 at 23:49
1  
yes, i actually did it before asking the question, and found several results. my aim is to start learning the most recommended solution to my problem. besides, not such question has been asked in stack overflow before, so I thought good answers from more experienced programmers can show the right path to take for beginners like me =) – kolistivra Jun 21 at 23:53
@musicfreak I'm conflicted; I'm tempted to downvote this question simply because it's so easy to google this. However, this is a site for questions and answers and this is a valid (if incredibly easy to answer) question. I can't understand why anyone upvoted this question. – Onorio Catenacci Jun 21 at 23:54
I googled and followed the links and I still don't know how. – Nosredna Jun 21 at 23:57
Is there a specific use case? what are you trying to do that is not part of the standard python library? – TokenMacGuy Jun 22 at 1:30

5 Answers

vote up 9 vote down check

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:

import win32file, win32api
import os


def ProgressRoutine(TotalFileSize, TotalBytesTransferred, StreamSize, StreamBytesTransferred,
    StreamNumber, CallbackReason, SourceFile, DestinationFile, Data):
    print Data
    print TotalFileSize, TotalBytesTransferred, StreamSize, StreamBytesTransferred, StreamNumber, CallbackReason, SourceFile, DestinationFile
    ##if TotalBytesTransferred > 100000:
    ##    return win32file.PROGRESS_STOP
    return win32file.PROGRESS_CONTINUE

temp_dir=win32api.GetTempPath()
fsrc=win32api.GetTempFileName(temp_dir,'cfe')[0]
fdst=win32api.GetTempFileName(temp_dir,'cfe')[0]
print fsrc, fdst

f=open(fsrc,'w')
f.write('xxxxxxxxxxxxxxxx\n'*32768)
f.close()
## add a couple of extra data streams
f=open(fsrc+':stream_y','w')
f.write('yyyyyyyyyyyyyyyy\n'*32768)
f.close()
f=open(fsrc+':stream_z','w')
f.write('zzzzzzzzzzzzzzzz\n'*32768)
f.close()

operation_desc='Copying '+fsrc+' to '+fdst
win32file.CopyFileEx(fsrc, fdst, ProgressRoutine, operation_desc, False,   win32file.COPY_FILE_RESTARTABLE)

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.

link|flag
Style remark: 3 open(fn, 'w').write('data') lines in CPython communicate the same message as 9 'open,write,close' lines. – J.F. Sebastian Jun 22 at 3:15
vote up 4 vote down

I imagine you'll want to use PyWin32.

link|flag
1  
I looked there and was mystified. The FAQ says almost nothing. The documentation links are "Page Not Found." Is it a puzzle? – Nosredna Jun 21 at 23:54
Hunh. The disappearance of the docs on python.org is distressing. I actually do not know where they have gotten to. No trace of them on sourceforge. Ugh. – chaos Jun 22 at 0:23
vote up 5 vote down

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, print ctypes.windll.kernel32.GetModuleHandleA(None) will show the module-handle of the current module (EXE or DLL). A more extensive example of using ctypes to get at win32 APIs is here.

link|flag
vote up 2 vote down

You may also want to check Python for Windows extension at SourceForge.

link|flag
vote up 1 vote down

PyWin32 doesn't have half the API.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.