diff --git a/spellCheck.py b/spellCheck.py new file mode 100644 index 0000000..653d1db --- /dev/null +++ b/spellCheck.py @@ -0,0 +1,7 @@ +from hanspell import spell_checker + + +sent = "그렇게 하면 않돼지. 왜안되" +spelled_check=spell_checker.check(sent) +hanspell_sent=spelled_check.as_dict() +print(hanspell_sent['errors'])