Metadata-Version: 2.1
Name: mecab-python3
Version: 0.996.1
Summary: python wrapper for mecab: Morphological Analysis engine
Home-page: https://github.com/SamuraiT/mecab-python3
Maintainer: Tatsuro Yasukawa
Maintainer-email: t.yasukawa01@gmail.com
License: BSD
Description: [![Build Status](https://travis-ci.org/SamuraiT/mecab-python3.svg?branch=master)](https://travis-ci.org/SamuraiT/mecab-python3)
        
        mecab-python3
        -------------
        
        This python wrapper for mecab works on both **python3.x** and **python2.x**.
        
        
        Installation and Usage
        --------------
        
        ```sh
        pip install mecab-python3
        ```
        
        You must have `mecab` and `swig` installed before running `setup.py`.
        For instance, on Debian-based Linux,
        
        ```sh
        sudo apt-get install mecab mecab-ipadic-utf8 libmecab-dev swig
        ```
        
        2. How to use?
        
           see 'test.py' as a sample program.
        
        3. Simple example
        
        ```py
        import MeCab
        mecab = MeCab.Tagger ("-Ochasen")
        print(mecab.parse("pythonが大好きです"))
        ```
        
        
        License
        -------
        MeCab is copyrighted free software by Taku Kudo <taku@chasen.org> and
        Nippon Telegraph and Telephone Corporation, and is released under
        any of the GPL (see the file GPL), the LGPL (see the file LGPL), or the
        BSD License (see the file BSD).
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: BSD License
Classifier: Environment :: MacOS X
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
