Metadata-Version: 2.1
Name: baruda
Version: 0.1.0
Summary: Fix and normalize Korean Jamo typos
Home-page: https://github.com/naubull2/baruda
Author: naubull2
Author-email: naubull2@gmail.com
Maintainer: Wooin(Dan) Lee
Maintainer-email: naubull2@gmail.com
License: BSD3
Download-URL: https://pypi.org/project/baruda/
Keywords: Korean,Hangul,Jamo
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: Korean
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Localization
Classifier: Topic :: Text Processing :: Linguistic
Description-Content-Type: text/markdown
Requires-Dist: jamo (>=0.4.1)

# Baruda
[![Build Status](
  https://travis-ci.com/naubull2/Baruda.svg?branch=master 
)](https://travis-ci.com/naubull2/Baruda)
[![README in Korean](
  https://img.shields.io/badge/readme-korean-blue.svg?style=flat
)](README.ko.md)

"Baruda"("바루다") is a pure Korean word that means "fix or correct things"
 - [Namu Wiki: List of pure Korean words](https://namu.wiki/w/%EC%88%9C%EC%9A%B0%EB%A6%AC%EB%A7%90/%EB%AA%A9%EB%A1%9D)

## Setup

- Source install

  ```
	python setup.py install
  ```

- PYPI install (TBD)

  ```
	pip install baruda
  ```

## Usage

- **jamofix()** : Fix Hangul Jamo-level typos and synthesize broken Hangul syllables.
> ex. "ㅇㅣㄱㅓ 진짴ㅋㅋ ㄷㅚ욬ㅋ" -> "이거 진짜ㅋㅋㅋ 되요ㅋ"

```python
from baruda import jamofix

s = "ㅇㅣㄱㅓ 진짴ㅋㅋ ㄷㅚ욬ㅋ"
print(jamofix(s))
# >>> "이거 진짜ㅋㅋㅋ 되요ㅋ"
```

## Reference

- [JDongian/jamo](https://github.com/JDongian/python-jamo): Used for faster jamo decomposition.


## Version 0.1.0

Released Mar 29 2020.

The initial release.


