本文介绍了我们如何在 python 中使用 ms office Communicator 客户端公开的 API,这可能吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用 ms office Communicator 客户端 api,并且我想在 python 中使用它们可以吗?

I want to use ms office communicator client apis, and i wan to use those in python is it possible to do ?

推荐答案


>>> import win32com.client
>>> msg = win32com.client.Dispatch('Communicator.UIAutomation')
>>> msg.InstantMessage('user@domain.com')

这篇关于我们如何在 python 中使用 ms office Communicator 客户端公开的 API,这可能吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 21:08