A demonstration of Windows Component Object Model (COM) interoperability between Python 2 and Python 3:
- Python 2 COM Server
- Python 3 COM Client
- Cross-version Python communication via COM
Install required dependencies for both Python versions:
python2 -m pip install pywin32
python3 -m pip install pywin32Register the COM Server:
python2 server.py --registerRun the COM Client:
python3 client.py