Skip to content

Commit 32a9bdc

Browse files
committed
6.0.0
1 parent 597a350 commit 32a9bdc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ from kss import Kss
6666
Kss.available()
6767
```
6868
```python
69-
['augment', 'collocate', 'g2p', 'hangulize', 'split_hanja', 'is_hanja', 'hanja2hangul', 'h2j', 'h2hcj', 'j2h', 'j2hcj', 'hcj2h', 'hcj2j', 'is_jamo', 'is_jamo_modern', 'is_hcj', 'is_hcj_modern', 'is_hangul_char', 'select_josa', 'combine_josa', 'extract_keywords', 'split_morphemes', 'paradigm', 'anonymize', 'clean_news', 'is_completed_form', 'get_all_completed_form_hangul_chars', 'get_all_non_completed_form_hangul_chars', 'filter_out', 'half2full', 'reduce_char_repeats', 'reduce_emoticon_repeats', 'remove_invisible_chars', 'normalize', 'preprocess', 'qwerty', 'romanize', 'is_unsafe', 'split_sentences', 'correct_spacing', 'summarize_sentences']
69+
['augment', 'collocate', 'g2p', 'hangulize', 'split_hanja', 'is_hanja', 'hanja2hangul', 'h2j', 'h2hcj', 'j2h', 'j2hcj', 'hcj2h', 'hcj2j', 'is_jamo', 'is_jamo_modern', 'is_hcj', 'is_hcj_modern', 'is_hangul_char', 'select_josa', 'combine_josa', 'extract_keywords', 'split_morphemes', 'paradigm', 'anonymize', 'clean_news', 'is_completed_form', 'get_all_completed_form_hangul_chars', 'get_all_incompleted_form_hangul_chars', 'filter_out', 'half2full', 'reduce_char_repeats', 'reduce_emoticon_repeats', 'remove_invisible_chars', 'normalize', 'preprocess', 'qwerty', 'romanize', 'is_unsafe', 'split_sentences', 'correct_spacing', 'summarize_sentences']
7070
```
7171

7272
### 3. Checking the usage of each module

Diff for: kss/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from kss._modules.preprocessing.anonymize import anonymize
1616
from kss._modules.preprocessing.clean_news import clean_news
1717
from kss._modules.preprocessing.completed_form import is_completed_form, get_all_completed_form_hangul_chars, \
18-
get_all_non_completed_form_hangul_chars
18+
get_all_incompleted_form_hangul_chars
1919
from kss._modules.preprocessing.filter_out import filter_out
2020
from kss._modules.preprocessing.half2full import half2full
2121
from kss._modules.preprocessing.normalize import normalize
@@ -57,7 +57,7 @@
5757
"clean_news": clean_news,
5858
"is_completed_form": is_completed_form,
5959
"get_all_completed_form_hangul_chars": get_all_completed_form_hangul_chars,
60-
"get_all_non_completed_form_hangul_chars": get_all_non_completed_form_hangul_chars,
60+
"get_all_incompleted_form_hangul_chars": get_all_incompleted_form_hangul_chars,
6161
"filter_out": filter_out,
6262
"half2full": half2full,
6363
"reduce_char_repeats": reduce_char_repeats,

0 commit comments

Comments
 (0)