今天上午在朋友圈读到了 《12行Python代码,自在随心应付微信拜年群发》 一文,非常简单,主要是借助于两个python的包 itchat和pillow,可以使用pip安装。
pip install itchat pillow
itchat 是 A complete and graceful API for Wechat
. 微信个人号接口、微信机器人及命令行微信,三十行即可自定义个人号机器人。了解更多使用方法,可以阅读使用 文档 。
我在Mac上运行以下代码:
# -*- coding:utf-8 -*- import itchat, time, re from itchat.content import * @itchat.msg_register([TEXT]) def text_reply(msg): match = re.search(u'年', msg['Text']).span() if match: itchat.send((u'新春快乐,鸡年大吉,身体健康,万事如意!'), msg['FromUserName']) @itchat.msg_register([PICTURE, RECORDING, VIDEO, SHARING]) def other_reply(msg): itchat.send((u'新春快乐,鸡年大吉,身体健康,万事如意!'), msg['FromUserName']) itchat.auto_login(enableCmdQR=2,hotReload=True) itchat.run()
因为是Python2.7版本,所以注明了utf8编码。另外需要注意的还有两点:
enableCmdQR=2
,赋值为2,默认为True。 如果我们在terminal中运行,只需要把以上程序保存下来,比如我放在Users/chengjun/github/wechat/index.py,只需要在terminal中运行下图代码即可。
生成二维码后,扫描二维码即可登录,亲测有效。