gitextract_jdhxzz3y/ ├── .gitignore ├── .travis.yml ├── JapaneseTokenizer/ │ ├── __init__.py │ ├── common/ │ │ ├── __init__.py │ │ ├── juman_utils.py │ │ ├── sever_handler.py │ │ ├── text_preprocess.py │ │ └── timeout_handler.py │ ├── datamodels.py │ ├── init_logger.py │ ├── juman_wrapper/ │ │ ├── __init__.py │ │ └── juman_wrapper.py │ ├── jumanpp_wrapper/ │ │ ├── __init__.py │ │ └── jumanpp_wrapper.py │ ├── kytea_wrapper/ │ │ ├── __init__.py │ │ └── kytea_wrapper.py │ ├── mecab_wrapper/ │ │ ├── __init__.py │ │ └── mecab_wrapper.py │ └── object_models.py ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── examples/ │ ├── examples.py │ ├── userdict.csv │ └── userdict.dict ├── install_tokenizers.sh ├── setup.py ├── test/ │ ├── Dockerfile │ ├── Dockerfile-dev │ ├── __init__.py │ ├── common/ │ │ ├── __init__.py │ │ └── test_server_handler.py │ ├── docker-compose-dev.yml │ ├── docker-compose.yml │ ├── requirements_py2.txt │ ├── requirements_py3.txt │ ├── resources/ │ │ └── test/ │ │ ├── userdict.csv │ │ └── userdict.dict │ ├── test_all.py │ ├── test_filter_python2.py │ ├── test_filter_python3.py │ ├── test_juman_wrapper_python2.py │ ├── test_juman_wrapper_python3.py │ ├── test_jumanpp_wrapper_python2.py │ ├── test_jumanpp_wrapper_python3.py │ ├── test_kytea_wrapper_python2.py │ ├── test_kytea_wrapper_python3.py │ ├── test_mecab_wrapper_python2.py │ └── test_mecab_wrapper_python3.py └── travis-mecab-install.sh