一、环境准备1、Python3.6
2、itchat第三方库
pip install itchat
3、pyinstaller第三方库
pip install pyinstaller
二、核心代码import itchatimport timeprint("请扫描弹出的扫二维码")itchat.auto_login(hotReload=True)boom_name = input("请输入想发送的人:")message = input("请输入发送的内容:")number = int(input("请输入发送的次数:"))boom_obj = itchat.search_friends(remarkName=boom_name)[0]['UserName']for i in range(1,number+1):time.sleep(0.01)print("正在发送第%d遍" %i)itchat.send_msg(msg=message,toUserName=boom_obj)
三、项目打包成可执行文件
为了方便程序的运行,Python提供了第三方库pyinstaller可以很方便的将项目打包成可执行的exe程序,安装方法:pip install pyinstaller1、使用方法:
-F 选项可以打出一个exe文件,默认是 -D,意思是打成一个文件夹 。在这里我们需要打开项目所在的cmd命令框输入:
-w 选项可以打桌面程序,去掉命令行黑框
-i 可以设置图标路径,将图标放在根目录 pyinstaller -F -i cat.ico demo.py
下载图标:https://www.easyicon.net/
pyinstaller -F wechat.py
等待项目执行完毕即可,此时可执行文件就存在dist文件夹中 。文章插图
2、运行效果
文章插图
哈哈哈哈哈,效果就出来了
文章插图
【慎用!Python 实现微信消息轰炸】
推荐阅读
- Python爬虫实战,pyecharts模块,Python实现中国地铁数据可视化
- 68 个 Python 内置函数详解
- Python编码封装
- 盘点Python中4种读取json文件和提取json文件内容的方法
- windows下通过多网卡和路由实现同时在多网络环境工作
- 10分钟学会用Python轻松玩转Excel
- Python中级精华-临界区加锁
- SpringSecurity实现自定义登录界面
- 用Python直观查看贵州茅台股票交易数据
- 6个实用的 Python 自动化脚本,你学会了吗?