Metadata-Version: 1.0
Name: igo-python
Version: 0.9
Summary: Python port of Igo Japanese morphological analyzer
Home-page: https://launchpad.net/igo-python/
Author: Hideaki Takahashi
Author-email: mymelo@gmail.com
License: MIT
Description: ================
         Igo for Python
        ================
        
        About
        =====
        
        Igo_ is a Japanese morphological analyzer written in Java and Common Lisp.
        This software is Python port of Igo(Java version).
        
        .. _Igo: http://igo.sourceforge.jp/
        
        Notice
        ======
        
        Dictionary builder is not provided. You need to use Igo Java version to build the dictionary for Igo.
        
        
        How To Use
        ==========
        
        You can use Igo Python easily::
        
         >>> from igo.Tagger import Tagger
         >>> t = Tagger('ipadic')
         >>> for m in t.parse(u'すもももももももものうち'):
         ...     print m.surface, m.feature
         ...
         すもも 名詞,一般,*,*,*,*,すもも,スモモ,スモモ
         も 助詞,係助詞,*,*,*,*,も,モ,モ
         もも 名詞,一般,*,*,*,*,もも,モモ,モモ
         も 助詞,係助詞,*,*,*,*,も,モ,モ
         もも 名詞,一般,*,*,*,*,もも,モモ,モモ
         の 助詞,連体化,*,*,*,*,の,ノ,ノ
         うち 名詞,非自立,副詞可能,*,*,*,うち,ウチ,ウチ
         >>>
        
        
        
        
        Changelog for Igo-Python
        ========================
        
        2010-11-25 -- 0.1
            * first release.
        
        2010-11-27 -- 0.1a
            * update package info only.
        
        2010-11-27 -- 0.2
            * support Google App Engine(maybe)
        
        2010-11-27 -- 0.3
            * drop mmap related code
            * reduce memory footprint
        
        2010-11-28 -- 0.3a
            * fix bugs(if a phrase ends with 'た' will causes error)
        
        2011-08-29 -- 0.4
            * add some enhances and clean up.
        
        2011-09-01 -- 0.9
            * compatibility with python3.2
            * update the code base to igo-0.4.3
            * add some enhances and clean up.
        
Keywords: japanese,morphological analyzer
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Japanese
Classifier: Operating System :: OS Independent
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Linguistic
