[python] ImportError: no module named win32api

I didn't find the package of the most voted answer in my Python 3 dist.

I had the same problem and solved it installing the module pywin32:

In a normal python:

pip install pywin32

In anaconda:

conda install pywin32

My python installation (IntelĀ® Distribution for Python) had some kind of dependency problem and was giving this error. After installing this module it stopped appearing.