大数据文摘x百度APP科技频道联合出品
作者:李雷
大年三十到年初一,有没有也被拜年短信(大部分是群发)搞得很焦虑?不回复似乎显得很没有礼貌,一一回复又累心劳神。
有没有既不浪费时间又能保持礼貌的办法呢?
人生苦短,我用Python!
知乎博主“余博伦”曾经在知乎上写过用12行python代码自动回复拜年信息的文章
https://zhuanlan.zhihu.com/p/25034403
我们在前辈的基础上,对代码进行了部分修改,还根据最近的节奏,加入了“加班”和“女朋友”触发彩蛋,让你能够自由增改自动回复的内容。
手把手告诉你如何过个解放双手的智能假期。
windows环境
1.pip安装
2.python安装
3.pycharm
4.微信
实现:自动拜年回复
1.Installing with get-pip.py
To install pip, securely download get-pip.py. [2]
PIP 官网首页
https://pip.pypa.io/en/stable/installing/?spm=a2c4e.11154000.rtdmain.3.270f4283NCvVd9#installing-with-get-pip-py
get-pip.py 下载地址
https://bootstrap.pypa.io/get-pip.py?spm=a2c4e.11154000.rtdmain.4.270f4283mNOgtr&file=get-pip.py
Then run the following:
在python 加入环境变量;
CMD中 在get-pip.py的保存路径下执行
2.get-pip.py
python的路径 ,及 python下 pip的路径都配置进入
3.成功 pip
pip 安装 itchat 包的过程 01
pip 安装 itchat 包的过程 02
成功
代码
创建Python文件比如 newYear.py ,代码内容如下:
"""
newYear.py test
"""
# coding: utf-8
importitchat, re
fromitchat.contentimport*
importrandom
importjson
importcodecs
"""
Constants
"""
#REPLY = {'default': '祝您猪年大吉'}
REPLY = {'default':''}
try:
withopen("REPLY.json",'r', encoding='utf-8')asload_f:
json_str = load_f.read()
print(json_str)
ifjson_str:
ifjson_str.startswith(u'\ufeff'):
json_str = json_str.encode('utf8')[3:].decode('utf8')
REPLY = json.loads(json_str)
exceptExceptionase:
print(e)
print("replies:", REPLY)
@itchat.msg_register([TEXT])
deftext_reply(msg):
items = REPLY.items()
defFlag =True
forkey, valueinitems:
#print(key, ",", value)
match = re.search(key, msg['Text'])
ifmatch:
randomIdx = random.randint(, len(REPLY[key])-1)
itchat.send(REPLY[key][randomIdx], msg['FromUserName'])
defFlag =False
break
iflen(REPLY['default']) >anddefFlag:
itchat.send(REPLY['default'], msg['FromUserName'])
'''
@itchat.msg_register([PICTURE, RECORDING, VIDEO, SHARING])
def other_reply(msg):
itchat.send((REPLY['default'], msg['FromUserName']))
'''
itchat.auto_login(enableCmdQR=True, hotReload=True)
itchat.run()
扫码登录
微信登陆成功
自动回复效果
注意:
1、此回复是使用了微信网页端,即如果设置了自动回复,电脑端微信自动退出。
2、自动回复信息内容,都保存到了Json文件中,你可以用txt格式打开此文件夹,进行修改内容然后点击保存,就可以只有定制新年彩蛋。
文件都放在后台了,大数据文摘微信公众号回复“拜年”可以获得这两个文件,赶紧去试试吧,效果不错呦~
节省的时间就好好陪陪家人吧!最后,文摘菌祝大家新年快乐!
志愿者介绍
听说点了「好看」的人都变好看了哦
领取专属 10元无门槛券
私享最新 技术干货