热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

(59)--微信聊天小程序

#与好友聊天小程序importitchatitchat.auto_login(hotReloadTrue)friendsitchat.get_friends()yourin

# 与好友聊天小程序

import itchat
itchat.auto_login(hotReload=True)
friends = itchat.get_friends()
yourinput = input("请输入好友昵称: ")
yourmessage = input("请输入发送内容:")
for friend in friends:
    if friend['NickName'] == yourinput:
        itchat.send(yourmessage,toUserName=friend['UserName'])

# 运行结果如下:

C:\Users\cz\AppData\Local\Programs\Python\Python35\python.exe E:/Python/python高阶/44.py
Getting uuid of QR code.
Downloading QR code.
Please scan the QR code to log in.
Please press confirm on your phone.
Loading the contact, this may take a little while.
Login successfully as 韩兵
请输入好友昵称: 章继
请输入发送内容:hello

Process finished with exit code 0

# 请先扫码登录再发送

兄弟连学python


Python学习交流、资源共享群:563626388 QQ



推荐阅读
author-avatar
风一样的骨头gg
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有