Metadata-Version: 1.1
Name: compound-word-splitter
Version: 0.3
Summary: Splits compound words, like German "Effektivitätsberechnung
Home-page: https://github.com/TimKam/compound-word-splitter
Author: Timotheus Kampik
Author-email: timotheus.kampik@gmail.com
License: MIT
Description: compound-word-splitter
        ======================
        
        .. image:: https://travis-ci.org/TimKam/compound-word-splitter.svg?branch=master
            :target: https://travis-ci.org/TimKam/compound-word-splitter
        
        Splits words that are not recognized by pyenchant (spell checker) into largest possible compounds.
        
        Installation
        ------------
        
        ::
        
            pip install compound-word-splitter
        
        Usage
        -----
        
        .. code:: python
        
            import splitter
        
            splitter.split('artfactory')
        
        returns
        
        .. code:: python
        
            ['art', 'factory']
        
        If the word cannot be split into compounds pyenchant recognizes as words, the splitter returns an empty string.
        
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Documentation
