Metadata-Version: 2.1
Name: handict
Version: 0.2.0
Summary: Yet another word segmentation tool.
Home-page: https://github.com/kemingy/handict
Author: Keming Yang
Author-email: kemingy94@gmail.com
License: UNKNOWN
Description: # Handict
        
        Yet another word segmentation tools.
        
        ## Tutorial
        
        **Install**: `pip install handict`
        
        ```python
        from handict import Handict
        
        han = Handict('path_of_user_dict_file') # the same format as jieba dict 
        han.segment('中文自然语言处理太难了')
        ```
        
        ## References
        
        * http://technology.chtsai.org/mmseg/
        * http://yongsun.me/2013/06/simple-implementation-of-mmseg-with-python/
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
