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