def POST(self): # curl -d "context=是由新浪爱问提供的分词服务,是扩展服务。 该服务分词准确率高,而且可以返回给每个词的词性,详细使用方法请看API文档" "http://ftodo.sinaapp.com/segment" i = web.input(context='', word_tag='1') if i.context: x = cron.segment(i.context, i.word_tag) return x else: return ""
def POST(self): # curl -d "context=是由新浪爱问提供的分词服务,是扩展服务。 该服务分词准确率高,而且可以返回给每个词的词性,详细使用方法请看API文档" "http://ftodo.sinaapp.com/segment" i = web.input(context='',word_tag='1') if i.context: x = cron.segment(i.context,i.word_tag) return x else: return ""
def GET(self): i = web.input(id=0) detail = da.subject.load_by_id(i.id) x = cron.segment(detail.body) return x