Metadata-Version: 2.1
Name: VerdictCut
Version: 0.1.0
Summary: cut the verdict into different part
Home-page: https://github.com/seanbbear/VerdictCut
Author: seanbbear
Author-email: k7489759@gmail.com
License: UNKNOWN
Description: # 判決書段落分割
        ## 使用方法
        安裝套件
        `
            pip install VerdictCut
        `
        
        找事實
        ```python
        from VerdictCut import find_fact
        fact = find_fact(text)
        print(fact)
        ```
        
        找論罪科刑
        ```python
        from VerdictCut import find_justice
        justice = find_justice(text)
        print(justice)
        ```
        
        找附錄法條
        ```python
        from VerdictCut import find_laws
        laws = find_laws(laws))
        print(laws)
        ```
        
        找主文
        ```python
        from VerdictCut import find_maintext
        maintext = find_maintext(text)
        print(maintext)
        ```
        
        找人物
        ```python
        from VerdictCut import find_roles
        roles = find_roles(text)
        print(roles)
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
