Exemple #1
0
	def post(self):
		args = self.req.parse_args()
		result = NLP.morphs(args.text)
		return result
Exemple #2
0
	def get(self):
		result = NLP.nouns("test")
Exemple #3
0
	def get(self):
		result = NLP.morphs("test")
Exemple #4
0
	def get(self):
		result = NLP.pos("test")
		return result
Exemple #5
0
 def post(self):
     args = self.req.parse_args()
     result = NLP.morphs(args.text)
     return result
Exemple #6
0
 def get(self):
     result = NLP.morphs("test")
Exemple #7
0
 def get(self):
     result = NLP.nouns("test")
Exemple #8
0
 def get(self):
     result = NLP.pos("test")
     return result