当前位置:   article > 正文

python微信公众号自动推送(十分简单的教程)_python向微信公众号推送消息

python向微信公众号推送消息

b3b0f8a7d0434498920c018a4a44fcbb.jpeg

目录

一、注册微信公众号

     1.注册链接

    2.登录成功

3.关注该公众号

4.创建模板

二、代码实现

1.爬取天气信息

2.计算生日天数

 3.获取access token

4.获取关注者的openid

5.向用户广播消息

6.最终代码


2023年五月五日更:

   自五月四日起原来的微信公众号模版将不再生效,可根据最新的开发文档更新的规则对自己的模版进行修改,修改过后即可重新获取到有内容的微信公众号推送

基础消息能力 / 模板消息接口 (qq.com)

4e7ac03f274e4a01b7245da3831dc180.png

也就是说现在的公众号模板的格式必须是正文中的第二种模板也就是下面这样 关键词:{{xxx.DATA}},而且现在\n也不能使用无法换行了,只能到达字数限制后自动换行而且字数太多还会省...... 我只能说钩史微信还老子女神!!!

一、注册微信公众号

     1.注册链接

https://mp.weixin.qq.com/debug/cgi-bin/sandboxinfo?action=showinfo&t=sandbox/indexicon-default.png?t=N7T8https://mp.weixin.qq.com/debug/cgi-bin/sandboxinfo?action=showinfo&t=sandbox/index

a5d25c810a1347519ad3aa02a16ff062.png

到达这个界面微信扫码登录即可(若出现登录失败问题则建议换一个更好的网络环境再尝试或者尝试刷新网页)

    2.登录成功

 66a30a81c61a46bd9e6f312eb08d9011.jpeg

登录成功后会自动生成你的appid和appsecret(后面会用到) 接口信息等暂时不用管若后期想完全实现自动推送则需要挂自己的服务器(后续会更新)

3.关注该公众号

9814f436792f4ddb91cb3ebd808c3346.jpeg

 扫码关注即可(建议不要心急自己调试好了再让npy关注)

4.创建模板

 创建模板时既可以将所有的 文本文字+数据 放在一起当作数据像这样

0e1c775f4dc24345993ca2a150474633.png

 也可以再模板内先写出来,但是这种方法会让模板的灵活性变小做大的修改只能重新创建新的模板 

 bff0ecfa04f94e739eeff756a1cf0115.png

 创建好模板微信公众号注册的工作就结束了

二、代码实现

首先了解以下的几个库

  1. import requests
  2. import json
  3. import datetime
  4. import time
  5. from bs4 import BeautifulSoup
  6. from zhdate import ZhDate
  7. #用到的库

1.爬取天气信息

  1. def get_weather(self):
  2. """
  3. 该方法中用到了beautifulsoup的一些基本用法
  4. 感兴趣可以深入了解python爬虫
  5. """
  6. url = 'http://www.weather.com.cn/weather/101290101.shtml' #昆明天气网站
  7. sysdate = datetime.date.today()
  8. r = requests.get(url, timeout=30) # 用requests抓取网页
  9. r.raise_for_status() # 异常时停止
  10. r.encoding = r.apparent_encoding # 编码格式
  11. html = r.text
  12. final_list = []
  13. soup = BeautifulSoup(html, 'html.parser') # 用BeautifulSoup库解析网页
  14. body = soup.body # 从soup里截取body的一部分
  15. data = body.find('div', {'id': '7d'}) #在网页浏览器按F12遍历div 找到 id = 7d
  16. #的对应标签 会发现七天的天气信息都包括在子节点中
  17. ul = data.find('ul') #用find方法找ul标签
  18. lis = ul.find_all('li') #找到ul中的li标签也就是列表其中存放着 日期 天气 风力等信息
  19. for day in lis:
  20. temp_list = []
  21. date = day.find('h1').string # 找到日期
  22. if date.string.split('日')[0] == str(sysdate.day):
  23. temp_list = []
  24. date = day.find('h1').string # 找到日期
  25. temp_list.append(date)
  26. info = day.find_all('p') # 找到所有的p标签
  27. temp_list.append(info[0].string)
  28. if info[1].find('span') is None: # 找到p标签中的第二个值'span'标签——最高温度
  29. temperature_highest = ' ' # 用一个判断是否有最高温度
  30. else:
  31. temperature_highest = info[1].find('span').string
  32. temperature_highest = temperature_highest.replace('℃', ' ')
  33. if info[1].find('i') is None: # 找到p标签中的第二个值'i'标签——最高温度
  34. temperature_lowest = ' ' # 用一个判断是否有最低温度
  35. else:
  36. temperature_lowest = info[1].find('i').string
  37. temperature_lowest = temperature_lowest.replace('℃', ' ')
  38. temp_list.append(temperature_highest) # 将最高气温添加到temp_list中
  39. temp_list.append(temperature_lowest) # 将最低气温添加到temp_list中
  40. final_list.append(temp_list) # 将temp_list列表添加到final_list列表中
  41. return '天气情况:' + final_list[0][1] + '\n温度:' + final_list[0][3].strip() + '~' + \
  42. final_list[0][2].strip() + '℃'

2.计算生日天数

  1. def get_herbirthday(self):
  2. """
  3. 获取npy生日 这里还用到了农历时间库
  4. 可以去网上查阅 ZhDate库 其他基本上是datetime中的一些获取当前日期和toordinal
  5. 没什么特别难的
  6. """
  7. today = datetime.datetime.now() #获取现在时间信息
  8. data_str = today.strftime('%Y-%m-%d')
  9. herbirthDay = ZhDate(today.year, 1, 18).to_datetime() #将农历1.18号的时间转换为公历时间再转换为datetime类型的时间
  10. if herbirthDay >today : #如果ta的生日日期比今天靠后则直接计算这两天的序号之差
  11. difference = herbirthDay.toordinal() - today.toordinal()
  12. return ("\n距离熊又又生日,还有 %d 天。" % (difference))
  13. elif herbirthDay <today: #如果ta的生日日期比今天靠前则给ta的生日加上一年再计算这两天的序号之差
  14. herbirthDay = herbirthDay.replace(today.year+1)
  15. difference = herbirthDay.toordinal() - today.toordinal()
  16. return ("\n距离熊又又生日,还有 %d 天。" % (difference))
  17. else:
  18. return ('生日快乐bb!!')

 3.获取access token

获取公众号的access_token值,access_token是公众号全局唯一接口调用凭据,公众号调用各接口时都需要使用access_token。api接口:接口调用请求说明
https请求方式:

https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={你的appid}&secret={你的appsecret}
  1. def get_access_token(self):
  2. """
  3. 获取access_token
  4. 通过查阅微信公众号的开发说明就清晰明了了
  5. """
  6. url = 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={}&secret={}'.\
  7. format(self.appID, self.appsecret)
  8. headers = {
  9. 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36'
  10. }
  11. response = requests.get(url, headers=headers).json()
  12. access_token = response.get('access_token')
  13. return access_token

4.获取关注者的openid

   opend_id是(有关注公众号的微信账号)用户id,想要消息推送过去就必须要获取open_id

获取open id的https请求方式为

https://api.weixin.qq.com/cgi-bin/user/get?access_token={获取的access token}&next_openid={}
  1. def get_openid(self):
  2. """
  3. 获取所有用户的openid
  4. 微信公众号开发文档中可以查阅获取openid的方法
  5. """
  6. next_openid = ''
  7. url_openid = 'https://api.weixin.qq.com/cgi-bin/user/get?access_token=%s&next_openid=%s' % (self.access_token, next_openid)
  8. ans = requests.get(url_openid)
  9. open_ids = json.loads(ans.content)['data']['openid']
  10. return open_ids

5.向用户广播消息

http请求方式:

 POST https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token=ACCESS_TOKEN
  1. def sendmsg(self):
  2. """
  3. 给所有用户发送消息
  4. """
  5. url = "https://api.weixin.qq.com/cgi-bin/message/template/send?access_token={}".format(self.access_token)
  6. if self.opend_ids != '':
  7. for open_id in self.opend_ids:
  8. body = {
  9. "touser": open_id,
  10. "template_id": self.template_id,
  11. "url": "https://www.baidu.com/",
  12. "topcolor": "#FF0000",
  13. #对应模板中的数据模板
  14. "data": {
  15. "frist": {
  16. "value": self.dataJson.get("frist"),
  17. "color": "#FF99CC" #文字颜色
  18. },
  19. "body": {
  20. "value": self.dataJson.get("body"),
  21. "color": "#EA0000"
  22. },
  23. "weather": {
  24. "value": self.dataJson.get("weather"),
  25. "color": "#00EC00"
  26. },
  27. "date": {
  28. "value": self.dataJson.get("date"),
  29. "color": "#6F00D2"
  30. },
  31. "remark": {
  32. "value": self.dataJson.get("remark"),
  33. "color": "#66CCFF"
  34. }
  35. }
  36. }
  37. data = bytes(json.dumps(body, ensure_ascii=False).encode('utf-8')) #将数据编码json并转换为bytes型
  38. response = requests.post(url, data=data)
  39. result = response.json() #将返回信息json解码
  40. print(result) # 根据response查看是否广播成功
  41. else:
  42. print("当前没有用户关注该公众号!")

6.最终代码

  1. import requests
  2. import json
  3. import datetime
  4. import time
  5. from bs4 import BeautifulSoup
  6. from zhdate import ZhDate
  7. class SendMessage(): #定义发送消息的类
  8. def __init__(self):
  9. date = self.get_date() #获取当前日期
  10. weather = self.get_weather() #获取天气信息
  11. lovedate = self.get_loveday() #获取纪念日
  12. herbirthday = self.get_herbirthday() #获取npy生日
  13. mybirthday = self.get_mybirthday() #获取自己生日
  14. body =lovedate+"\n"+herbirthday+mybirthday
  15. self.dataJson ={"frist":"早上好bb!❤\n", #最终要发送的json
  16. "date":date+'\n',
  17. "body":body+" ",
  18. "weather":weather+'\n城市:昆明'+'\n', #因为还没写获取地理位置的所以城市暂时写死 后续将会改为获取当前位置并爬取对应城市的天气信息版本
  19. "last":'\n今天也是爱bb
    声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/70632
    推荐阅读
    相关标签