实现步骤:
1、用微信注册一个此网站的账号
源码.点击领取即可
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、在一对多推送的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)
今天的分享到这里就结束了
对文章有问题的,或者有其他关于python的问题,可以在评论区留言或者私信我哦
觉得我分享的文章不错的话,可以关注一下我,或者给文章点赞(/≧▽≦)/