I have been trying to perform some advanced word document manipulation with python-docx, but I was advised to use Microsoft office API.
The problem is that I can't install win32api
from pywin32 home page because I get the following error:
(IntellibookVenv) MacBook-Pro-de-Hugo:Intellibook hugovillalobos$ pip install pywin32
Collecting pywin32
Could not find a version that satisfies the requirement pywin32 (from versions: )
No matching distribution found for pywin32
I don't know wether I get the error because there is not win32api version for Mac, or wether I am doing something wrongly.
win32api
is just a wrapper around the Windows low-level win32 API, there is no chance of running that on Mac without some sort of OS emulator or VM. – Insole