每日新闻接口,每天60s,每天60秒

2023-12-21

每日新闻的免费接口

每天60秒读懂世界,【微语】,别人的免费接口,直接对接使用

自行浏览https://api.03c3.cn/

python发送每日新闻到企业微信

每日新闻接口,每天60s,每天60秒_第1张图片

import requests
import base64
import hashlib

# 企业微信发送图片
def wx_work_image(img_rb, url_key):
    # 发送企业微信webhook机器人图片, 图片支持jpg,png两种格式,大小不能超过2Mb
    # 企业微信文档https://developer.work.weixin.qq.com/document/path/91770
    base64_f = str(base64.b64encode(img_rb), "utf-8")
    md = hashlib.md5()
    md.update(img_rb)
    md5_f = md.hexdigest()
    headers = {"content-type": "application/json"}
    msg = {"msgtype": "image", "image": {"base64": base64_f, "md5": md5_f}}
    url = 'https://qyapi.weixin.qq.com/cgi-bin/webhook/send?key=' + url_key
    try:
        rsp = requests.post(url, headers=headers, json=msg)     # 发送请求
        print("企业微信机器人发图片成功", rsp.json())
    except Exception as e:
        print("企业微信机器人发图片失败,详细信息:" + str(e))

# 个人的免费接口站长还搞一些接口 https://api.03c3.cn/
url = "https://api.03c3.cn/api/zb"  # 浏览器打开能直接看到图片
rsp = requests.get(url)   # 返回的是图片
with open("saved_file.jpg", "wb") as file:   # 保存到本地文件,可不保存,按需
    file.write(rsp.content)

wx_work_image(rsp.content, "079xxxxxxxxxxxxeb6")  # 企业微信发送图片


每日新闻接口,每天60s,每天60秒_第2张图片

你可能感兴趣的:(python,开发语言)