当前位置:   article > 正文

python使用微信进行消息推送_python自动化报错 接入微信公众号推送消息

python自动化报错 接入微信公众号推送消息

今天再讲一种推送消息到方法,更简单。几行代码实现直接给微信推送消息。
其他推送方法见之前到文章:
1、邮箱
Python用QQ邮箱发送邮件,支持抄送和附件
2、企业微信
Python与企业微信
3、IFTTT(软件推送)
Python调用IFTTT小栗子

本篇文章,讲一下如何用微信推送消息。
这里用到了一个三方工具。pushplus

在这里插入图片描述

一对一推送

具体步骤:
1、用微信注册一个此网站的账号
2、将token复制出来,记录到小本本上。
在这里插入图片描述

import requests

def send_wechat(msg):
    token = 'XXXXXXXXXXXX'#前边复制到那个token
    title = 'title1'
    content = msg
    template = 'html'
    url = f"https://www.pushplus.plus/send?token={token}&title={title}&content={content}&template={template}"
    print(url)
    r = requests.get(url=url)
    print(r.text)
    
if __name__ == '__main__':
    msg = 'Life is short I use python'
    send_wechat(msg)
    
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

然后在手机上看结果:
在这里插入图片描述

局限性:这个只能给自己推送,别人推送不了。那怎么给别人推送呢?

一对多推送

步骤:
1、在一对多推送的tab页面里,新建群组。并记录下群组编码
在这里插入图片描述

2、点击生成二维码,将二维码发给要接受消息的人。让他们用微信扫码。
在这里插入图片描述
3、扫码后,看看订阅人,扫码之后的人,会显示在这里。给这个群组发送的消息,这里的人都会接收到。
在这里插入图片描述
4、写代码发送消息到微信

import requests

def send_wechat(msg):
    token = ' XXXXXXXXXXXXXXXXXX' #前边复制到那个token
    title = 'test notice title'
    content = msg
    template = 'html'
    topic = '1'
    url = f"http://www.pushplus.plus/send?token={token}&title={title}&content={content}&template={template}&topic={topic}"
    print(url)
    r = requests.get(url=url)
    print(r.text)
    
if __name__ == '__main__':
    msg = 'this is a one to more lizi'
    send_wechat(msg)
    
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

效果:
在这里插入图片描述

完成~~

注:普通用户和会员的最大的区别:
普通用户一天仅可请求200次,会员扩大到1000次。所以普通用户基本上也够用了。真想支持网站作者,就买个会员,一个月也就10块钱。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/70620
推荐阅读
相关标签
  

闽ICP备14008679号