wechat_work
1.0.0
這是一個基於企業微信API 開發的用於訊息通知的Python 庫
開始之前,請先跟著步驟創建企業微信應用
pip
安裝pip install wechat_work
git
和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 )