Metadata-Version: 2.1
Name: korhal
Version: 0.1.1
Summary: KOrean Rpc-based Application for Handy Application for Language-processing
Home-page: https://github.com/cookieshake/korhal
Author: cookieshake
Author-email: cookieshake.dev@gmail.com
License: UNKNOWN
Description: # Korhal
        [![Build Status](https://travis-ci.com/ingtranet/korhal.svg?branch=master)](https://travis-ci.com/ingtranet/korhal)
        
        Korhal(KOrean Rpc-based Handy Application for Language-processing) is a python wrapper for several korean Part-Of-Speech taggers.
        
        ## How to install
        
        ``` sh
        pip install korhal
        ```
        
        ## Available taggers
        
        - KOMORAN with `korhal.komoran`
        - Hannanum with `korhal.hannanum`
        - Open-source Korean Text Processor with `korhal.openkoreantext`
        
        ## How to use
        
        ``` python
        from korhal.komoran import tokenize
        
        result = tokenize("집에 가서 잠을 자고 싶다")
        # result => Token(text=집,pos=NNG), Token(text=에,pos=JKB), Token(text=가,pos=VV), Token(text=아서,pos=EC), Token(text=잠,pos=NNG), Token(text=을,pos=JKO), Token(text=자,pos=VV), Token(text=고,pos=EC), Token(text=싶,pos=VX), Token(text=다,pos=EC)]
        
        from korhal.aio.komoran import tokenize
        
        future = tokenize("집에 가서 잠을 자고 싶다")
        # future => <Future at 0x10a335d30 state=finished returned list>
        result = future.result()
        # result => [Token(text=집,pos=NNG), Token(text=에,pos=JKB), Token(text=가,pos=VV), Token(text=아서,pos=EC), Token(text=잠,pos=NNG), Token(text=을,pos=JKO), Token(text=자,pos=VV), Token(text=고,pos=EC), Token(text=싶,pos=VX), Token(text=다,pos=EC)]
        ```
        
        ## Thanks to
        
        - [KOMORAN](http://www.shineware.co.kr/products/komoran/)
        - [Hannanum](http://semanticweb.kaist.ac.kr/hannanum/index.html)
        - [Open-source Korean Text Processor](https://github.com/open-korean-text/open-korean-text)
        - [KoalaNLP](https://koalanlp.github.io/KoalaNLP-core/) 
Keywords: korean analysis tagger tokenizer
Platform: UNKNOWN
Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
Description-Content-Type: text/markdown
