{"library":"pyvi","title":"PyVi","description":"PyVi is a Python toolkit for Vietnamese language processing, providing tokenization (word segmentation), part-of-speech tagging, and named entity recognition. Currently at version 0.1.1, the project appears to be in maintenance mode with no recent updates.","language":"python","status":"maintenance","last_verified":"Mon Apr 27","install":{"commands":["pip install pyvi"],"cli":null},"imports":["from pyvi import ViTokenizer","from pyvi import ViPOSTagger"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"from pyvi import ViTokenizer, ViPosTagger\n\ntext = 'Học sinh học sinh học'\ntokens = ViTokenizer.tokenize(text)\nprint(tokens)\n# Output: Học_sinh học_sinh học\n\n# POS tagging\nwords = tokens.split()\ntags = ViPosTagger.postagging(words)\nprint(tags)\n# Output: (['Học_sinh', 'học_sinh', 'học'], ['N', 'N', 'V'])","lang":"python","description":"Tokenize Vietnamese text and perform POS tagging.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}