[Python] WeChat_Roubot

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Python] WeChat_Roubot相关的知识,希望对你有一定的参考价值。

在微信中接入一个聊天机器人

1. WeChat 个人接口itchat

2. 图灵机器人

 

#-*- coding:utf-8 -*-
import itchat
import requests

apiUrl = ‘http://www.tuling123.com/openapi/api‘

KEY = ‘03ea77300ddb4cf7bf243603ea84c2f0‘

#request module‘s function to get the data from the website
def get_response(msg):
	data={
	   ‘key‘ :KEY,
	   ‘info‘ :msg,
	   ‘userid‘ :‘Ben‘,
	}
#if something errors happen
	try:
		r = requests.post(apiUrl, data=data).json()
		return r.get(‘text‘)
	except:
		return

@itchat.msg_register(itchat.content.TEXT)
def tuling_reply(msg):
	#If something happen
	defaultReply = ‘I received ‘ + msg[‘Text‘]
	reply = get_response(msg[‘Text‘])
	return reply or defaultReply

itchat.auto_login() #log in the wechat
itchat.run()

  

以上是关于[Python] WeChat_Roubot的主要内容,如果未能解决你的问题,请参考以下文章

Python Qt GUI设计:QTableViewQListViewQListWidetQTableWidgetQTreeWidget和QTreeWidgetltem表格和树类(提升篇—1)(代码片

如何升级到python3版本并且安装pip3及ipython3

Python range 数据类型 [学习 Python 必备基础知识][看此一篇就够了][range()][range 元素元素检测元素索引查找切片负索引][检测 range 对象是否相等](代码片

Python range 数据类型 [学习 Python 必备基础知识][看此一篇就够了][range()][range 元素元素检测元素索引查找切片负索引][检测 range 对象是否相等](代码片

解决报错:在Python中使用property装饰器时,出现错误:TypeError: descriptor ‘setter‘ requires a ‘property‘ object but(代码片

python opencv error “parallel_impl.cpp (240) WorkerThread 155: Can‘t spawn new thread: res = 11“(代码片