Skip to main content

A tools for send message to company wechat.

Project description

cowechatapi

这是一个发送消息到企业微信的接口工具 仅支持在python3环境下执行,支持系统:Linux、windows其他暂未验证 消息类型支持: 文本、图片、声音、视频和文件

安装依赖

pip install requests

pip安装

pip install cowechatapi

通过调用API接口发送消息

调用企业微信API接口发送消息给指定用户 文本消息例子:

from cowechatapi.cowechat_api import CoWechatAPI

bot = CoWechatAPI(coid="your_company_id", secret="your_app_secret",agentid=1000001)
bot.send(to_user="USER_NAME", msg_type="text", content="今天天气好吗?")

文件消息例子:

from cowechatapi.cowechat_api import CoWechatAPI

bot = CoWechatAPI(coid="your_company_id", secret="your_app_secret",agentid=1000001)
bot.send(to_user="USER_NAME", msg_type="file", media_id="MEDIA_ID")

图片消息例子:

from cowechatapi.cowechat_api import CoWechatAPI

bot = CoWechatAPI(coid="your_company_id", secret="your_app_secret",agentid=1000001)
bot.send(to_user="USER_NAME", msg_type="image", media_id="MEDIA_ID")

media_id的获取方法是通过API的upload上传临时素材得到的,临时素材有效期为两天。

上传临时素材例子:

from cowechatapi.cowechat_api import CoWechatAPI

bot = CoWechatAPI(coid="your_company_id", secret="your_app_secret",agentid=1000001)
bot.upload(filetype="image", fileurl="FILE_PATH")

通过命令行方式发送消息

例子:

# 发送文本消息
python3 -m cowechat -i [your_company_id] -s [your_app_secret] -a [your_agentid] -m text -c "content" --user [USER_NAME]
# 发送图片消息
python3 -m cowechat -i [your_company_id] -s [your_app_secret] -a [your_agentid] -m image --media [media_id] --user [USER_NAME]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cowechatapi-0.1.5.tar.gz (5.5 kB view hashes)

Uploaded Source

Built Distribution

cowechatapi-0.1.5-py3-none-any.whl (7.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page