import requests
import base64
import hashlib
import os
#参数bot是指机器人的key,具体可参考企业微信机器人官网
#发送普通消息,text是文本内容
def send_text(text,bot):
url = f"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key={bot}"
headers = {"Content-Type": "text/plain"}
data = {
"msgtype": "text",
"text": {
"content": text,
}
}
r = requests.post(url, headers=headers, json=data)
print(r.text)
#发送markdown消息,text是文本内容,可接受markdown语法
def send_markdown(text,bot):
url = f"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key={bot}"
data = {
"msgtype": "markdown",
"markdown": {
"content": text
}}
r = requests.post(url,json=data)
print(r.text)
#发送文件,file_path是指文件路径(我目前就试了excel文件)
def send_file(file_path,bot):
file_url = f"https://qyapi.weixin.qq.com/cgi-bin/webhook/upload_media?key={bot}&type=file"
file= {'file':open(file_path,'rb')}
result = requests.post(file_url, files=file)
file_id = eval(result.text)['media_id']
url = f"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key={bot}"
data = {
"msgtype": "file",
"file": {"media_id": file_id,}
}
r = requests.post(url, json=data)
print(r.text)
#发送图片,file_path是指图片路径
def send_img(file_path,bot):
with open(file_path,"rb") as f:
base64_data = base64.b64encode(f.read())
file = open(file_path, "rb")
md = hashlib.md5()
md.update(file.read())
res1 = md.hexdigest()
url = f"https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key={bot}"
headers = {"Content-Type": "text/plain"}
data = {
"msgtype": "image",
"image": {
"base64": base64_data.decode('utf-8'),
"md5": res1
}
}
r = requests.post(url, headers=headers, json=data)
print(r.text)
python发企业微信机器人
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1、背景 由于办公需要“每天定时推送某消息用来提醒群里面所有人”,于是决定用企业微信自带的机器人来实现此功能。具体...
- 在终端某个群组添加机器人之后,可以获取到 webhook 地址,然后我们构造需要发送的内容,通过requests向...
- 前提,不使用网络上提供的第三方机器人接口(类似微软小冰、图灵机器人),而是部署自己训练的智能机器人。 TODO 部...
- 5月以来,哪怕对市场风向再不敏感的人,也感觉到阵阵凉意。二级市场连续下挫,一级市场融资环境恶化,不论企业融资数量还...