Where to find the win32api module for Python?

PythonWinapi

Python Problem Overview


I need to download it for Python 2.7, but can't seem to find it...

Python Solutions


Solution 1 - Python

There is a a new option as well: get it via pip! There is a package pypiwin32 with wheels available, so you can just install with: pip install pypiwin32!

Edit: Per comment from @movermeyer, the main project now publishes wheels at pywin32, and so can be installed with pip install pywin32

Solution 2 - Python

'pywin32' is its canonical name.

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

Solution 3 - Python

I've found that UC Irvine has a great collection of python modules, pywin32 (win32api) being one of many listed there. I'm not sure how they do with keeping up with the latest versions of these modules but it hasn't let me down yet.

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

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

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionrectangletangleView Question on Stackoverflow
Solution 1 - PythonAndrew ChristiansonView Answer on Stackoverflow
Solution 2 - Pythondash-tom-bangView Answer on Stackoverflow
Solution 3 - PythonAustin AView Answer on Stackoverflow