Metadata-Version: 2.1
Name: triedict
Version: 1.0.8
Summary: 基于字典树的匹配
Home-page: https://github.com/vegaviazhang/triedict
Author: vegaviazhang
Author-email: vegaviazhang@gmail.com
Maintainer: vega
Maintainer-email: vegaviazhang@gmail.com
License: BSD License
Description: # Chinese Desc
        ### 基于字典树的匹配
        
        ##### github demo 
        * github官网链接: [https://github.com/vegaviazhang/triedict](https://github.com/vegaviazhang/triedict)
        
        ##### 过程
        * 先初始化需要匹配的term，再进行匹配
          * term可以逐步增加
        
        ##### 优点
        * 利用空间换取时间，效率高
        * term输入可以为一个tuple或list
          * 第一个元素为term本身，第二个元素为term的补充信息，可以为python的数据类型\[str, tuple, dict, list, ...]
        
        ##### 其他
        * 有任何想法请添加issues
        * 好用的话请给GitHub项目星星哦
        
        
        
        # English Desc
        ### Trie Based Matching
        ##### Github url: 
        * Github Url: [https://github.com/vegaviazhang/triedict](https://github.com/vegaviazhang/triedict)
        
        ##### Process
        * First initialize the terms to be matched, then matching.
          * term can step to add.
        
        ##### Advantages
        * Using space for time, High efficiency.
        * Input of term can be tuple or list
          * First element is term exactly, second is the supplementary information of the term
          * The type of the second can be str, tuple, dict, list, ... and so on.
        ##### Other
        Please add issues if you have any ideas.
        Please give the GitHub project stars if it works well!
        
Platform: all
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries
Description-Content-Type: text/markdown
