wechat_work
1.0.0
Il s'agit d'une bibliothèque Python pour la notification de messages développée sur la base de l'API Enterprise WeChat.
Avant de commencer, veuillez suivre les étapes pour créer une application WeChat d'entreprise
pip
pip install wechat_work
git
et pip
pip install git+https://github.com/Micro-sheep/wechat_work.git
from wechat_work import WechatWork
corpid = '企业 ID'
appid = '企业应用 ID'
corpsecret = '企业应用 Secret'
users = [ '企业微信的用户账号1' , '企业微信的用户账号2' ]
w = WechatWork ( corpid = corpid ,
appid = appid ,
corpsecret = corpsecret )
# 发送文本
w . send_text ( 'Hello World!' , users )
# 发送 Markdown
w . send_markdown ( '# Hello World' , users )
# 发送图片
w . send_image ( './hello.jpg' , users )
# 发送文件
w . send_file ( './hello.txt' , users )