python使用pushplus将消息推送到微信

编程序的时候,有时需要将提醒信息发送到微信,便于时刻掌握情况。

pushplus就很方便的解决了这个问题。

一、登陆网站并获取自己的token

网址:pushplus(推送加)-破壳网络科技旗下微信消息推送平台

二、编写代码(我已经写出一个函数,方便调用)

import requests
import datetime
import json

def pushplus_notify(title,content):
    today=datetime.date.today()
    date_text=today.strftime("%Y-%m-%d")
    token = '123888999' #在pushpush网站中可以找到
    title= title+date_text
    url = 'http://www.pushplus.plus/send'
    data = {
        "token":token,
        "title":title,
        "content":content
    }
    body=json.dumps(data).encode(encoding='utf-8')
    headers = {'Content-Type':'application/json'}
    requests.post(url,data=body,headers=headers)

调用:

pushplus_notify("你的标题","你的内容")

这样微信上就能收到信息了。 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值