通过安装wxpy第三方包,用几行简单的代码即可进行微信聊天。虽然蛋疼了点,但是如果你想感受类似在控制台上进行微信沟通的(装逼)感觉。那么可以尝试一下。当然,wxpy还有其他更(高)好(大)玩(上)的玩法。这里就不说了。我们只玩最简单的。
from wxpy import *
bot = Bot()
friends= bot.friends()
p = friends.search('微信好友名称')[0]
@bot.register()
def print_others(msg):
# 输出监听到的消息
print(msg)
# 回复消息
#msg.reply("hello world")
embed()