I am trying to figure out a piece of specialized equipment that represents it as a COM object using win32com in Python.
However, the documentation on how to actually configure hardware through a COM object is sparse (requires significant initialization) and is fully focused on using heaps of pre-built libraries for Visual Studio that are not accessible through python.
However, is there a way to view all local COM activity, so I can sort the activity logs to try to figure out how the existing demos correctly initialize the hardware, and replicate the behavior in my python script
Ideally, in the spirit of a wirehark, there would be something for this.
Note. I have very little (read: basically no) experience using COM, since the main focus is mainly on the embedded hardware (and a small python developer on the side). However, I am stuck in this particular device.
source share