Where to find win32api module for Python?

I need to download it for Python 2.7, but cannot find it ...

+81
python winapi
Aug 27 2018-10-18T00:
source share
4 answers

'pywin32' is its canonical name.

http://sourceforge.net/projects/pywin32/

+66
Aug 27 '10 at 2:17
source share

There is a new option: get it through pip! There is a pypiwin32 package with wheels available, so you can simply install with: pip install pypiwin32 !

+135
Jul 10 '15 at 7:15
source share

I found that UC Irvine has an excellent collection of python modules, pywin32 (win32api) is one of many listed there. I'm not sure how they handle the latest versions of these modules, but this has not failed me yet.

UC Irvine Python Extension Repository - http://www.lfd.uci.edu/~gohlke/pythonlibs

Pywin32 module - http://www.lfd.uci.edu/~gohlke/pythonlibs/#pywin32

+7
Mar 29 '14 at 19:59
source share
+4
Aug 27 '10 at 2:18
source share



All Articles