├── .gitignore ├── LICENSE ├── README.md ├── mecab ├── __init__.py ├── mecab.py └── pybind │ └── _mecab │ ├── _mecab.cpp │ ├── dictionaryinfo.cpp │ ├── lattice.cpp │ ├── node.cpp │ ├── path.cpp │ └── tagger.cpp ├── scripts ├── install_mecab_ko_dic.sh └── install_requirements.sh └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/python-mecab-kor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/python-mecab-kor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/python-mecab-kor/HEAD/README.md -------------------------------------------------------------------------------- /mecab/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/python-mecab-kor/HEAD/mecab/__init__.py -------------------------------------------------------------------------------- /mecab/mecab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/python-mecab-kor/HEAD/mecab/mecab.py -------------------------------------------------------------------------------- /mecab/pybind/_mecab/_mecab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/python-mecab-kor/HEAD/mecab/pybind/_mecab/_mecab.cpp -------------------------------------------------------------------------------- /mecab/pybind/_mecab/dictionaryinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/python-mecab-kor/HEAD/mecab/pybind/_mecab/dictionaryinfo.cpp -------------------------------------------------------------------------------- /mecab/pybind/_mecab/lattice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/python-mecab-kor/HEAD/mecab/pybind/_mecab/lattice.cpp -------------------------------------------------------------------------------- /mecab/pybind/_mecab/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/python-mecab-kor/HEAD/mecab/pybind/_mecab/node.cpp -------------------------------------------------------------------------------- /mecab/pybind/_mecab/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/python-mecab-kor/HEAD/mecab/pybind/_mecab/path.cpp -------------------------------------------------------------------------------- /mecab/pybind/_mecab/tagger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/python-mecab-kor/HEAD/mecab/pybind/_mecab/tagger.cpp -------------------------------------------------------------------------------- /scripts/install_mecab_ko_dic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/python-mecab-kor/HEAD/scripts/install_mecab_ko_dic.sh -------------------------------------------------------------------------------- /scripts/install_requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/python-mecab-kor/HEAD/scripts/install_requirements.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyunwoongko/python-mecab-kor/HEAD/setup.py --------------------------------------------------------------------------------