I want to use ms office communicator client apis, and i wan to use those in python is it possible to do ?
views:
214answers:
3
A:
I don't know very well Ms Office communicator but if it exposes a COM interface, you shoudl be able to access it through the Mark Hammond python bindings for COM http://starship.python.net/crew/skippy/
Otherwise, if it exposes a .NET API you should be able to access it with IronPython
I hope it helps
luc
2010-02-18 08:30:16
A:
>>> import win32com.client >>> msg = win32com.client.Dispatch('Communicator.UIAutomation') >>> msg.InstantMessage('[email protected]')
MadSc13ntist
2010-09-20 19:21:58