环境要求:

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(简书)


GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e added ecosystem file for PM2 4 年前
5def40a3 Add host customization support for the NodeJS version 4 年前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐