dingtalk-sdk是一个钉钉开放平台的第三方PythonSDK,实现了企业内部开发和应用服务商(ISV)的API。
功能特性企业内部开发接入api
应用服务商(ISV)接入api
安装目前dingtalk-sdk支持的Python环境有2.7,3.4,3.5,3.6和pypy。
dingtalk-sdk消息加解密同时兼容cryptography和PyCrypto,优先使用cryptography库。可先自行安装cryptography或者PyCrypto库:
# 安装 cryptographypip install cryptography>=0.8.2# 或者安装 PyCryptopip install pycrypto>=2.6.1为了简化安装过程,推荐使用pip进行安装
pip install dingtalk-sdk# with cryptographypip install dingtalk-sdk[cryptography]# with pycryptopip install dingtalk-sdk[pycrypto]升级dingtalk-sdk到新版本:
pip install -U dingtalk-sdk
评论