使用python的itchat库写一个能够给文件传输助手发送一句,你好世界的代码
时间: 2024-05-11 15:14:59 浏览: 134
Python微信库:itchat的用法详解
好的,以下是代码:
```python
import itchat
# 登录微信
itchat.auto_login(hotReload=True)
# 获取文件传输助手的username
friend = itchat.search_friends(name='文件传输助手')[0]
friend_username = friend['UserName']
# 发送消息
itchat.send('你好世界', toUserName=friend_username)
# 退出登录
itchat.logout()
```
请注意,为了能够发送消息,你需要先扫描二维码登录微信。另外,如果你想要发送给其他好友,只需要将 `friend_username` 替换成对应好友的 `UserName` 即可。
阅读全文