Metadata-Version: 2.1
Name: hama
Version: 1.0.0
Summary: Korean natural language toolkit
Home-page: https://github.com/hamanlp/hama-py
Author: Seongmin Park
Author-email: llov0708@gmail.com
License: MIT
Keywords: korean nlp natural language processing morpheme part of speech tagging
Platform: UNKNOWN
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: mmh3

<p align="center">
    <img src="https://raw.githubusercontent.com/hamanlp/hama-py/master/logo.png" height="100px" width="100px" alt="hama logo" align="center">
</p>

🦛 파이썬 한글 처리 라이브러리. Python **Ha**ngul **M**orphological **A**nalyzer

[![Build Status](https://travis-ci.org/hamanlp/hama-py.svg?branch=master)](https://travis-ci.org/hamanlp/hama-py)

## Features
* 텍스트 전처리 (Text preprocessing)
    * 형태소 분석 (Morpheme analysis)
    * 품사 태깅 (Part-of-speech tagging)

## License
개발 가이드의 [라이센스](https://www.hamanlp.org/docs/license/) 문서를 참조하세요.

## Installation
Python 3.6+ 를 지원합니다.
```
pip install hama
```

## Usage
[개발 가이드](https://www.hamanlp.org/docs/initialization)에 Hama NLP의 여러 기능에 대한 사용법이 소개되어 있습니다. 

## Testing
```
coverage run -m pytest -v
coverage report -m
```


## Profiling
From the project root:
```
python -m cProfile -o profile/out.profile profile/profile.py
python profile/timing.py
```


## Formatting
```
yapf -i -r -vv .
```



