Metadata-Version: 1.1
Name: python-darts
Version: 0.0.2
Summary: A Python binding for Darts (Double Array Trie)
Home-page: http://github.com/studio-ousia/python-darts
Author: Studio Ousia
Author-email: admin@ousia.jp
License: Copyright 2013 Studio Ousia

   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.

Description: python-darts
        ============
        
        A Python binding for `Darts (Double ARray Trie System) <http://www.chasen.org/~taku/software/darts/>`_.
        
        .. image:: https://badge.fury.io/py/python-darts.png
            :target: http://badge.fury.io/py/python-darts
        
        .. image:: https://travis-ci.org/studio-ousia/python-darts.png?branch=master
            :target: https://travis-ci.org/studio-ousia/python-darts
        
        Installation
        ------------
        
        .. code-block:: bash
        
            $ pip install Cython
            $ pip install python-darts
        
        Usage
        -----
        
        .. code-block:: python
        
            >>> from darts import Darts
            >>> da = Darts('tests/mock_data.darts')
            >>> da.common_prefix_search('star wars')
            ['star', 'star wars']
            >>> da.longest_match('star wars')
            'star wars'
        
Keywords: darts,trie
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
