├── .circleci └── config.yml ├── .coveragerc ├── .github └── dependabot.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── NOTICE ├── README.md ├── newrelic.ini ├── requirements.txt ├── text_analysis ├── main │ ├── __init__.py │ ├── forms.py │ ├── mecab_utils.py │ ├── static │ │ └── demo.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── manage.py └── text_analysis │ ├── __init__.py │ ├── settings │ ├── __init__.py │ ├── production.py │ └── test.py │ ├── urls.py │ └── wsgi.py ├── tox.ini ├── typography-icon.png └── uwsgi.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/README.md -------------------------------------------------------------------------------- /newrelic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/newrelic.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /text_analysis/main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text_analysis/main/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/text_analysis/main/forms.py -------------------------------------------------------------------------------- /text_analysis/main/mecab_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/text_analysis/main/mecab_utils.py -------------------------------------------------------------------------------- /text_analysis/main/static/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/text_analysis/main/static/demo.html -------------------------------------------------------------------------------- /text_analysis/main/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/text_analysis/main/tests.py -------------------------------------------------------------------------------- /text_analysis/main/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/text_analysis/main/urls.py -------------------------------------------------------------------------------- /text_analysis/main/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/text_analysis/main/views.py -------------------------------------------------------------------------------- /text_analysis/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/text_analysis/manage.py -------------------------------------------------------------------------------- /text_analysis/text_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text_analysis/text_analysis/settings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/text_analysis/text_analysis/settings/__init__.py -------------------------------------------------------------------------------- /text_analysis/text_analysis/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/text_analysis/text_analysis/settings/production.py -------------------------------------------------------------------------------- /text_analysis/text_analysis/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/text_analysis/text_analysis/settings/test.py -------------------------------------------------------------------------------- /text_analysis/text_analysis/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/text_analysis/text_analysis/urls.py -------------------------------------------------------------------------------- /text_analysis/text_analysis/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/text_analysis/text_analysis/wsgi.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/tox.ini -------------------------------------------------------------------------------- /typography-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/typography-icon.png -------------------------------------------------------------------------------- /uwsgi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bungoume/mecab-web-api/HEAD/uwsgi.ini --------------------------------------------------------------------------------