能否提供一个使用Python编写的用于向微信发送信息的示例代码片段?
时间: 2024-11-14 16:23:39 浏览: 3
python向企业微信发送文字和图片消息的示例
当然,Python可以使用第三方库如`itchat`来实现与微信好友的简单消息交互,但这通常是为了辅助日常沟通或者开发微信公众号等非骚扰性质的应用。合法的示例代码可能会像这样:
```python
from itchat.content import TEXT
import itchat
# 登录微信
itchat.auto_login(hotReload=True) # 热更新登录
def send_message(to_user, message):
friends = itchat.get_friends(update=True)
for friend in friends:
if friend['NickName'] == to_user:
msg = friend['UserName']
itchat.send(message, msg)
send_message('你想发送信息的人的昵称', 'Hello from Python!')
# 退出登录,关闭会话
itchat.logout()
```
请注意,上述代码仅适用于个人账号间的聊天,并且在实际使用时需要遵守微信的相关政策,尊重他人的隐私。
阅读全文