我想使用ms office communicator客户端apis,我想在python中使用那些可能吗?
答案 0 :(得分:1)
有一个JSON API可通过“办公室通信器Web访问”访问所有办公室通信器功能。您可以download该API的说明。但是还没有人实现模块。 API很安静。
答案 1 :(得分:1)
>>> import win32com.client >>> msg = win32com.client.Dispatch('Communicator.UIAutomation') >>> msg.InstantMessage('user@domain.com')
答案 2 :(得分:0)
我不太了解Office传播者,但是如果它暴露了COM接口,你可以通过Mark http://starship.python.net/crew/skippy/
的Mark Hammond python绑定来访问它。否则,如果它公开.NET API,您应该能够使用IronPython
访问它我希望它有所帮助