hyonzin / hangul-braille-converter

한글을 6점 점자로 변환하는 파이썬 라이브러리

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hangul to Braille Converter

python project for the blind

  • Hangul
  • English
  • Number
  • Some special symbols

INSTALL:

# use pip
pip install hbcvt

# or clone from GitHub
git clone https://github.com/hyonzin/hangul-braille-converter.git
cd hangul-braille-converter
python setup.py install
# test
python setup.py test
# or if py.test is installed
py.test

USAGE:

import hbcvt
hbcvt.h2b.text("꽃이 피었어!")

RESULT:

  • The first 3 numbers are the left side of 6-dot braille numbers, and other 3 numbers are the right side.
[
    ['꽃', [
        ['ㄲ', [
            [0, 0, 0, 0, 0, 1],
            [0, 0, 0, 1, 0, 0]
        ]],
        ['ㅗ', [
            [1, 0, 1, 0, 0, 1]
        ]],
        ['ㅊ', [
            [0, 1, 1, 0, 0, 0]
        ]]
    ]],
    ['이', [
        ['ㅇ', [
            [1, 1, 0, 1, 1, 0]
        ]],
        ['ㅣ', [
            [1, 0, 1, 0, 1, 0]
        ]]
    ]],
    [' ', [
        [' ', [
            [0, 0, 0, 0, 0, 0]
        ]]
    ]],
    ['피', [
        ['ㅍ', [
            [1, 0, 0, 1, 1, 0]
        ]],
        ['ㅣ', [
            [1, 0, 1, 0, 1, 0]
        ]]
    ]],
    ['었', [
        ['ㅇ', [
            [1, 1, 0, 1, 1, 0]
        ]],
        ['ㅓ', [
            [0, 1, 1, 1, 0, 0]
        ]],
        ['ㅆ', [
            [0, 0, 1, 1, 0, 0]
        ]]
    ]],
    ['어', [
        ['ㅇ', [
            [1, 1, 0, 1, 1, 0]
        ]],
        ['ㅓ', [
            [0, 1, 1, 1, 0, 0]
        ]]
    ]],
    ['!', [
        ['!', [
            [0, 1, 1, 0, 1, 0]
        ]]
    ]]
]

About

한글을 6점 점자로 변환하는 파이썬 라이브러리

License:MIT License


Languages

Language:Python 100.0%