手把手教你用7行代码实现微信聊天机器人 -- Python wxpy

0?wx_fmt=gif&wxfrom=5&wx_lazy=1

环境要求:

Windows / Linux / Mac OS

Python 3.4-3.6,以及 2.7 版本


wxpy安装

## 使用国内源安装速度快

pip install -U wxpy -i "https://pypi.doubanio.com/simple/"


实例


让机器人与所有好友聊天

from wxpy import *

# 实例化,并登录微信

bot = Bot(cache_path=True)

# 调用图灵机器人API

tuling = Tuling(api_key='4a0488cdce684468b95591a641f0971d')

@bot.register()

def auto_reply(msg):

    tuling.do_reply(msg)

embed()


让机器人与指定好友聊天


from wxpy import *

# 实例化,并登录微信

bot = Bot(cache_path=True)

# 查找到要使用机器人来聊天的好友

my_friend = ensure_one(bot.search(u'好友名字'))

# 调用图灵机器人API

tuling = Tuling(api_key='4a0488cdce684468b95591a641f0971d')

# 使用图灵机器人自动与指定好友聊天

@bot.register(my_friend)

def reply_my_friend(msg):

    tuling.do_reply(msg)

embed()


常见问题

Q: 图灵机器人的api_key 怎么获得?

A: 去 http://www.tuling123.com 官网注册帐号就可以获得 api_key


来源:Kangvcar(简书)

分享朋友圈 也是另一种赞赏

The more we share, The more we have

 

欢迎加入数据君高效数据分析社区


加我私人微信进入大数据干货群:tongyuannow 





640?wx_fmt=jpeg






目前100000+人已关注加入我们

640.jpeg? 0.gif? 0.gif? 0.gif? 0.gif? 0.gif? 0.gif? 0.gif?

0.gif? 0.gif? 0.gif? 0.gif? 0.gif? 0.gif? 0.gif? 0.gif?



640?wx_fmt=jpeg


你可能感兴趣的:(手把手教你用7行代码实现微信聊天机器人 -- Python wxpy)