一、机器人设置设置流程:如何设置群机器人 -帮助中心-企业微信 (qq.com)记得将Webhook复制保存下来二、机器人定时推送功能代码实现推送消息模块代码clock.py#!/usr/bin/python3 # -*- coding: utf-8 -*- import requests import json import pandas as pd import os # 企业微信机器人 Webhook webhook_url = 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=你的机器人KEY' # 发送文本消息 def send_text_message(content): headers = {'Content-Type': 'application/json'} data = { "msgtype": "text", "text": { "content": co
Kevin Chen
Currently a student at KU. Thank you for stopping by!