欢迎来到代码驿站!

Python代码

当前位置:首页 > 软件编程 > Python代码

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

时间:2021-01-01 13:28:42|栏目:Python代码|点击:

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

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

     3、发送获取的内容

1、获取心灵鸡汤的内容

  如下图,获取第一条鸡汤

  实现如下:

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

import requests
import wxpy
from 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:pass
if __name__ == '__main__':
  send_msg()

其他发送类型格式:

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

朋友收到的消息:

  

上一篇:pyv8学习python和javascript变量进行交互

栏    目:Python代码

下一篇:Windows下python3.7安装教程

本文标题:使用wxpy实现自动发送微信消息功能

本文地址:http://www.codeinn.net/misctech/38979.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有