Skip to content

Commit

Permalink
[RELEASE] v1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
uujinn committed Oct 21, 2022
1 parent 37262ff commit 384bce9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ print(b.korTranslate("안녕하세요. 점자 번역 패키지입니다."))
### print 결과

```python
⠣⠒⠉⠻⠚⠠⠝⠬⠲⠀⠨⠎⠢⠨⠀⠘⠾⠱⠁⠀⠙⠗⠋⠕⠨⠕⠕⠃⠉⠕⠊⠲⠀
⠣⠒⠉⠻⠚⠠⠝⠬⠲⠀⠨⠎⠢⠨⠀⠘⠾⠱⠁⠀⠙⠗⠋⠕⠨⠕⠕⠃⠉⠕⠊⠲⠀
```
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "KorToBraille"
version = "1.0.0"
version = "1.0.2"
authors = [
{name="Yujin Yang", email="[email protected]"},
{name="Nayeon Kim", email="[email protected]" },
Expand Down
5 changes: 4 additions & 1 deletion src/KorToBraille/KorToBraille.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ def getBrailleFromJamo(self, n):
# 제2항: ‘ᄋ’이 첫소리 자리에 쓰일 때에는 이를 표기하지 않는다.
if cho == "ㅇ":
cho = ""
else:
self.flag_17 = False

braille_cho = kor_cho[cho] # 초성 점자
# 중성
Expand Down Expand Up @@ -324,6 +326,7 @@ def korTranslate(self, input: str):

return result


# if __name__ == '__main__':
# b = KorToBraille().korTranslate("2019년 11월 4일 제93회 점자의 날을 기념하여 점자 번역기 '점자로'를 공개합니다. 별도의 프로그램 설치 없이 웹 페이지에서 바로 사용할 수 있습니다.")
# b = KorToBraille().korTranslate("안녕하세요. 점자 번역 패키지입니다.")
# print(b)

0 comments on commit 384bce9

Please sign in to comment.