Metadata-Version: 2.4
Name: final_consonant_formatter
Version: 0.2.1
Summary: A simple package to attach correct case particles based on whether a Korean syllable ends with a final consonant.
Author-email: Nahyun Park <nahowo@naver.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/nahowo/final_consonant_formatter
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

<!--
SPDX-FileCopyrightText: 2026 Nahyun Park <nahowo@naver.com>

SPDX-License-Identifier: MIT
-->

# Final_Consonant_Formatter
A simple Python package to attach correct case particles based on whether a Korean syllable ends with a final consonant. 

### How to use
1. Install final_consonant_formatter package
    ```
    pip install final_consonant_formatter
    ```
2. Import final_consonant_formatter package in python file or terminal
    ```py
    from fc_formatter import attach_iga
    ```
3. Use attach_iga function
    ```py
    print(f'{attach_iga("파이썬")} 재밌다!') # 파이썬이 재밌다!
    print(f'{attach_iga("자바")} 재밌다!') # 자바가 재밌다!
    ```
