python企业微信小程序发送信息

python企业微信小程序发送信息

在使用下面代码之前先配置webhook

教程如下:

https://www.bilibili.com/video/BV1oH4y1S7pN/?vd_source=bee29ac3f59b719e046019f637738769

然后使用如下代码就可以发消息了:

代码如下:

python 复制代码
#coding=gbk
import requests
def send(message:str):
    url = "机器人webhook地址"
    headers = {
        "Content-Type": "application/json"
    }
    data = {
        "msgtype": "text",
        "text": {
            "content": message,
            "mentioned_list": ["@all"]
        }
    }
    response = requests.post(url, headers=headers, json=data)
    records = response.json()
    return records
def sendAll(message:str):
    url = "机器人webhook地址"
    headers = {
        "Content-Type": "application/json"
    }
    data = {
        "msgtype": "text",
        "text": {
            "content": message,
            "mentioned_list": ["@all"]
        }
    }
    response = requests.post(url, headers=headers, json=data)
    records = response.json()
    return records


def test(stz):
    send(stz)

stz="测试程序"
test(stz)
相关推荐
LitchiCheng1 分钟前
Mujoco 基础:获取模型中所有 body 的 name, id 以及位姿
人工智能·python
老鱼说AI28 分钟前
算法基础教学第一步:数据结构
数据结构·python·算法
2301_7951672029 分钟前
Python 高手编程系列八:缓存
开发语言·python·缓存
闲人编程39 分钟前
Django测试框架深度使用:Factory Boy与Fixture对比
数据库·python·django·sqlite·钩子·fixture·codecapsule
8***293139 分钟前
Go基础之环境搭建
开发语言·后端·golang
梅花1440 分钟前
基于Django房屋租赁系统
后端·python·django·bootstrap·django项目·django网站
今天没有盐1 小时前
Python数据分析实战:从超市销售到教学评估
python·pycharm·编程语言
Jing_Rainbow1 小时前
【Weapp-2 /Lesson19(2025-11-04)】微信小程序“博客园”项目深度解析:从架构到细节的完整剖析📱
微信·微信小程序·程序员
Yue丶越1 小时前
【C语言】自定义类型:联合体与枚举
c语言·开发语言
csbysj20201 小时前
DOM 节点
开发语言