python企业微信机器人_python发企业微信机器人

该博客介绍了如何使用Python来发送不同类型的消息到企业微信机器人,包括文本、markdown、文件和图片。通过调用requests库和企业微信的API,实现了发送文本、markdown格式的消息,上传并发送文件以及发送图片的功能。
摘要由CSDN通过智能技术生成

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值