这标题就是个噱头。。。其实用的别人的接口,就是这货。
下面是代码:
# -*- coding: utf-8 -*- import urllib,urllib2 import sys import json reload(sys) sys.setdefaultencoding(‘utf-8‘) API_KEY = ‘bc192acc72f2768b211c19342f‘ raw_TULINURL = "http://www.tuling123.com/openapi/api?key=%s&info=" % API_KEY print "你好,请输入内容:".decode(‘utf-8‘) for i in range(1,100): queryStr = raw_input("我:".decode(‘utf-8‘)) TULINURL = "%s%s" % (raw_TULINURL,urllib2.quote(queryStr)) req = urllib2.Request(url=TULINURL) result = urllib2.urlopen(req).read() hjson=json.loads(result) length=len(hjson.keys()) content=hjson[‘text‘] if length==3: print ‘robots:‘ +content+hjson[‘url‘] elif length==2: print ‘robots:‘ +content
执行结果:
下一篇中我想把它的结果放到微信公众号中。
时间: 2024-10-12 16:24:03