If you are developing modules for Scrapy in Visual Studio and you encounter an error “ModuleNotFoundError: No module named ‘win32api'”, you need to install pypiwin32 package. To do this follow the following steps: Go to you Visual Studio Project and right-click on “Python Environments” Click on your Python package references, in my case it says
MoreInstall Python Package from PYPI
Published on
Python Package Index is an online repository of software packages for Python. Installing them requires a simple command “pip install ” [name of the package]. For example if you want to install matlib, type “pip install matlib” in the command prompt. Howerver, there are requirements before you can use the pip command. The following options
More