def post(self): args = self.req.parse_args() result = NLP.pos(args.text) return result
def get(self): result = NLP.pos("test") return result