Problems with the library with Python

-2

Can anyone tell me that the "comtypes.client" library is just Windows? if so, please tell me some similar library (That works for the same thing) for Linux (ubuntu) thanks.

    
asked by anonymous 25.10.2018 / 15:56

1 answer

0

This comtypes library is a lightweight package for COM access in python, allowing you to create and register or access COM interfaces in your script.

COM stands for Component Object Model , and is a Microsoft platform for software components launched in 1993.

Its use is to enable communication between Windows processes and the dynamic creation of objects in any programming language that supports technology. Its use makes no sense in linux , since in Linux there are no COM objects. So this library does not work on linux, and there is no other library for COM access to work, because those objects do not exist in Linux.

In Linux distributions, other technologies for inter-process communication, such as DBus, are used.

It would be cool if you gave us what you wanted to do with this library, so we can recommend an alternative way to do it.

    
25.10.2018 / 16:56