用python实现微信消息轰炸你的好友

用python实现微信消息轰炸你的好友

    • 简介
    • 准备
    • 代码
    • 使用
    • 退出
    • 效果

简介

使用python的第三方库itchat,itchat模块是由一位叫littlecodersh的大神开发的模块,附上大神的GitHub地址,有兴趣的可以玩一下,很有意思!!!

准备

打开电脑cmd输入:

pip install itchat

代码

import itchat
import time
//登陆微信,采用热加载的方式登陆微信,会生成一个itchat.pkl文件,用于保存登陆状态。
itchat.auto_login(hotReload=True)
boom_name = input('输入你想轰炸的基友:')
boom_message = input('输入你想轰炸的消息:')
boom_obj = itchat.search_friends(remarkName=boom_name)[0]['UserName']
while True:
	time.sleep(0.5)
	print('正在轰炸。。。。')
	itchat.send_msg(msg=boom_message,toUserName=boom_obj)

使用

  • 打开cmd终端
  • 运行python文件
  • 扫一下弹出的二维码,登陆
  • 输入微信人的备注名,一定是备注名。
  • 输入轰炸的内容
  • 回车,开始

退出

Ctrl+C

效果

用python实现微信消息轰炸你的好友_第1张图片
用python实现微信消息轰炸你的好友_第2张图片

你可能感兴趣的:(python基础学习)