Metadata-Version: 1.1
Name: Janome
Version: 0.3.3
Summary: Japanese morphological analysis engine.
Home-page: http://mocobeta.github.io/janome/
Author: Tomoko Uchida
Author-email: tomoko.uchida.1111@gmail.com
License: AL2
Description: =======
        Janome
        =======
        
        .. image:: https://travis-ci.org/mocobeta/janome.svg?branch=master
            :target: https://travis-ci.org/mocobeta/janome
        
        .. image:: https://ci.appveyor.com/api/projects/status/47d4avyw07voo331/branch/master?svg=true
            :target: https://ci.appveyor.com/project/mocobeta/janome/branch/master
        
        .. image:: https://coveralls.io/repos/github/mocobeta/janome/badge.svg?branch=master
            :target: https://coveralls.io/github/mocobeta/janome?branch=master
        
        .. image:: https://badges.gitter.im/org.png
            :target: https://gitter.im/janome-python/ja
        
        Janome is a Japanese morphological analysis engine written in pure Python.
        
        General documentation:
        
        http://mocobeta.github.io/janome/en/ (English)
        
        http://mocobeta.github.io/janome/ (Japanese)
        
        Requirements
        =============
        
        Python 2.7.x or 3.3+ is required.
        
        Install
        ========
        
        [Note] This consumes about 500 MB memory for building.
        
        .. code:: bash
        
          (venv) $ python setup.py install
        
        Run
        ====
        
        .. code:: bash
        
          (env) $ python
          >>> from janome.tokenizer import Tokenizer
          >>> t = Tokenizer()
          >>> for token in t.tokenize(u'すもももももももものうち'):
          ...     print(token)
          ...
          すもも 名詞,一般,*,*,*,*,すもも,スモモ,スモモ
          も    助詞,係助詞,*,*,*,*,も,モ,モ
          もも  名詞,一般,*,*,*,*,もも,モモ,モモ
          も    助詞,係助詞,*,*,*,*,も,モ,モ
          もも  名詞,一般,*,*,*,*,もも,モモ,モモ
          の    助詞,連体化,*,*,*,*,の,ノ,ノ
          うち  名詞,非自立,副詞可能,*,*,*,うち,ウチ,ウチ
        
        License
        ========
        
        Licensed under Apache License 2.0 and uses the MeCab-IPADIC dictionary/statistical model.
        
        See LICENSE.txt and NOTICE.txt for license details.
        
        Acknowledgement
        ================
        
        Special thanks to @ikawaha and @takuya_a.
        
        Copyright
        ==========
        
        Copyright(C) 2015, moco_beta. All rights reserved.
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: Japanese
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
