怎么用python给微信好友发送消息,不用itchat
时间: 2024-05-07 19:22:01 浏览: 85
使用python玩转微信
可以使用wxpy这个Python包进行微信消息发送。下面是一个简单的示例代码:
```python
from wxpy import *
bot = Bot()
# 搜索好友
friend = bot.friends().search('好友昵称')[0]
# 发送消息
friend.send('你好,这是一条测试消息!')
```
需要先安装wxpy包,可以使用pip进行安装:
```python
pip install -U wxpy
```
当运行上面的代码时,会弹出一个二维码,需要使用微信扫描并确认登录。之后即可向指定好友发送消息。
阅读全文