ImportError: No module named pywintypes

后端 未结 6 1548
再見小時候
再見小時候 2020-12-15 23:10

I am working to make a small keylogger with Python, by using the pyHook, pythoncom and Pywin32 modules. Here is my code:

import pyHook, pythoncom, sys, loggi         


        
6条回答
  •  温柔的废话
    2020-12-15 23:12

    pywintypes is part of the Python for Windows extensions, otherwise known as pywin32. You'll need to install that to get access to pywintypes.

    Note that as of this writing, pywin32's maintainer doesn't upload files to PyPI, so you have to get an appropriate version of installer from http://pywin32.sf.net.

提交回复
热议问题