使用wxpy实现自动发送微信消息功能

时间:2021-05-22

思路整理:1、进入心灵鸡汤网页,使用python获取心灵鸡汤内容

     2、登陆微信,找到需要发送的朋友

     3、发送获取的内容

1、获取心灵鸡汤的内容

  如下图,获取第一条鸡汤

  实现如下:

2、登陆微信,搜索朋友,进行发送

import requestsimport wxpyfrom bs4 import BeautifulSoup# 微信网页登陆bot = wxpy.Bot(console_qr=2,cache_path='botoo.pkl')# 获取心灵鸡汤中的最新内容,可以参考其他爬虫随便查看怎么爬虫def get_msg(): url = 'http://www.59xihuan.cn/index_1.html' h = requests.get(url) html = h.text news_bf = BeautifulSoup(html,"html.parser") msg = news_bf.find('div', class_='pic_text1') news = msg.text # print(msg) # print(news) return news# 给朋友发送消息def send_msg(): try: # 添加朋友微信昵称 friend = bot.friends().search(u'xxxxx')[0] friend.send(get_msg()) 29 except:passif __name__ == '__main__': send_msg()

其他发送类型格式:

  •   发送文本消息:friend.send('文本消息')
  •   发送图片消息:friend.send_image('图片消息.jpg')
  •   发送视频消息:friend.send_video('视频消息.mov')
  •   发送文件消息:friend.send_file('文件消息.zip')
  •   以动态的方式发送图片:friend.send('@img@图片消息.jpg')

朋友收到的消息:

  

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章