Board logo

标题: [原创教程] python 3.5.1 智能对话机器人 [打印本页]

作者: ivor    时间: 2016-2-19 14:24     标题: python 3.5.1 智能对话机器人

  1. # python 3.5.1
  2. # coding:utf-8
  3. # 智能对话机器人
  4. # by:ivor  bathome.net
  5. import urllib.request, json
  6. class tuling:
  7. # 初始化用户ID
  8.     def __init__(self, userid):
  9.         self.userid = userid
  10. # 请求方法,参数为请求内容info
  11.     def acce(self,info):
  12.         try:
  13.             self.info = urllib.request.quote(info)
  14.             self.data = urllib.request.urlopen("http://www.tuling123.com/openapi/api?key=4ee063f83ed5639c97d109e6ae5ae34f&info=" + self.info + "&userid=" + self.userid )
  15.             self.data = self.data.read().decode()
  16.             self.data = json.loads(self.data)
  17.         except:
  18.             print("Check out your network!")
  19.             input("Press Enter key to contine...")
  20.             exit(1)
  21. if __name__ == '__main__':
  22.     while True:
  23.     # 初始化类tuling的实例
  24.         robot = tuling("test")
  25.         ask = input("[用户]%s:" % robot.userid)
  26.         robot.acce(ask)
  27.         for i in robot.data:
  28.             if i == 'code':
  29.                 continue
  30.             print("机器人:%s\n" % robot.data[i])
复制代码





欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2