Metadata-Version: 2.4
Name: special2text
Version: 0.1.0
Summary: special2text is a package that converts special characters to nomal text.
Home-page: https://github.com/KR-korcen/korcen
Author: Tanat
Author-email: shrbwjd05@naver.com
License: MIT
Project-URL: Source, https://github.com/KR-korcen/korcen
Project-URL: Tracker, https://github.com/KR-korcen/korcen/issues
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
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# special2text

`special2text`는 장식된 특수문자, 풀가로 문자, 다양한 스크립트 및 수학적 서체 문자를 일반 텍스트(ASCII/한글 등)로 변환하는 작은 Python 유틸리티입니다.

설치

```bash
pip install special2text
```

로컬에서 설치하려면:

```bash
pip install .
```

사용법

파이썬에서:

```python
from special2text import special_en, special_ko, special_text

print(special_en('Ｈｅｌｌｏ！ １２３'))        # Hello! 123
print(special_ko('안૮ત્રુ하⋌⫣요̆̈', cleanup_non_korean=True))
```

명령행 도구(설치 시 제공):

```bash
special2text
# 또는
python -m special2text.special2text
```

기여 및 라이선스

프로젝트는 MIT 라이선스입니다. 개선/이슈는 PR을 통해 환영합니다.
