大数据 爬虫Python AI SqlPythonPython学习

python微信轰炸简单版,可以自定义发送内容!

2018-11-12  本文已影响36人  1a076099f916
python微信轰炸简单版,可以自定义发送内容!

简介(加小编Python学习群:813542856即可自动获取大量python视频教程以及各类PDF!)

https://github.com/littlecodersh/ItChat

准备

核心代码

<pre class="ql-align-justify" style="-webkit-tap-highlight-color: transparent; box-sizing: border-box; font-family: Consolas, Menlo, Courier, monospace; font-size: 16px; white-space: pre-wrap; position: relative; line-height: 1.5; color: rgb(153, 153, 153); margin: 1em 0px; padding: 12px 10px; background: rgb(244, 245, 246); border: 1px solid rgb(232, 232, 232); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">import itchatimport timeprint('扫一下弹出来的二维码')
itchat.auto_login(hotReload=True)
boom_remark_name = input('输入你要轰炸的人的微信备注,按回车建继续')
message = input('输入你要轰炸的内容,按回车键开始轰炸')
boom_obj = itchat.search_friends(remarkName=boom_remark_name)[0]['UserName']while True:
time.sleep(0.5) print('正在轰炸。。。')
itchat.send_msg(msg=message, toUserName=boom_obj)
</pre>

代码讲解

import itchat

导入itchat模块

import time

导入time模块

itchat.auto_login(hotReload=True)

登录微信,采用热加载的方式登录网页版的微信,会生成一个itchat.pkl的文件,用于保持登录状态,有点类似于cookie

python微信轰炸简单版,可以自定义发送内容!

boom_remark_name = input('输入你要轰炸的人的微信备注,按回车建继续') 这里一定要输入你给微信好友的备注名,否者无法定位到好友

message = input('输入你要轰炸的内容,按回车键开始轰炸')

这里输入要轰炸的内容

boom_obj = itchat.search_friends(remarkName=boom_remarkname)[0]['UserName']

这里通过微信好友的备注名找到微信好友的信息,再通过UserName定位到好友

while True: 死循环轰炸 time.sleep(0.5)设置睡眠,以免出现消息发送频繁导致不能发送微信消息,此处可自行设置,睡眠时间不能太短 print('正在轰炸。。。')

python微信轰炸简单版,可以自定义发送内容!

itchat.send_msg(msg=message, toUserName=boom_obj)

python微信轰炸简单版,可以自定义发送内容!

如何使用

如何退出

按Ctrl + C 退出轰炸

上一篇下一篇

猜你喜欢

热点阅读