使用wxpy实现自动发送微信消息功能
作者:Tynam.Yang 时间:2022-04-01 21:16:06
思路整理: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')
朋友收到的消息:
来源:https://www.cnblogs.com/tynam/p/9106461.html
标签:wxpy,发送,微信,消息
0
投稿
猜你喜欢
MySQL身份认证漏洞 升级到5.5.24可修正
2012-07-11 15:54:09
IE6终极备忘单——策略
2010-01-13 13:05:00
python gensim使用word2vec词向量处理中文语料的方法
2023-02-25 08:12:56
Python实现简单的语音识别系统
2022-09-11 04:44:15
浅谈在JupyterNotebook下导入自己的模块的问题
2023-03-16 11:28:36
tf.nn.conv2d与tf.layers.conv2d的区别及说明
2021-03-29 13:36:53
python爬虫 urllib模块反爬虫机制UA详解
2022-04-07 02:22:51
python 函数传参之传值还是传引用的分析
2021-08-20 13:06:34
浅谈MySQL安装starting the server失败的解决办法
2024-01-25 06:37:22
python实现控制台打印的方法
2021-12-18 12:21:04
Python摸鱼神器之利用树莓派opencv人脸识别自动控制电脑显示桌面
2021-01-12 07:31:45
Python编程pydantic触发及访问错误处理
2021-05-19 20:49:07
SQL Server实现全文搜索查询详解
2024-01-23 05:19:13
Python图像处理实现两幅图像合成一幅图像的方法【测试可用】
2022-11-13 08:36:56
将有安全问题的SQL过程删除,比较全面
2007-08-06 14:46:00
千篇一律的JS运算符讲解,一起来看看
2024-05-13 10:06:52
Python集合set的交集和并集操作方法
2023-12-25 17:35:56
django模型查询操作的实现
2023-03-31 04:01:04
xml文件调用css
2008-09-05 17:12:00
javascript学习随笔(编写浏览器脚本 Navigator Scripting )
2024-04-28 09:49:39