Metadata-Version: 1.1
Name: CyHunspell
Version: 1.0.1
Summary: A wrapper on hunspell for use in Python
Home-page: https://github.com/OpenGov/cython_hunspell
Author: Matthew Seal
Author-email: mseal@opengov.us
License: New BSD
Download-URL: https://github.com/OpenGov/cython_hunspell/tarball/v1.0.1
Description: CyHunspell

        ==========

        

        Cython wrapper on Hunspell Dictionary

        

        Description

        -----------

        

        This repository provides a wrapper on Hunspell to be used natively in

        Python. The module uses cython to link between the C++ and Python code,

        with some additional features. The hunspell library will cache any

        corrections, you can use persistent caching by adding the

        ``use_disk_cache`` argument to a Hunspell constructor, otherwise it uses

        in-memory caching.

        

        NOTE: This repository only works on Unix environments until pthreads can

        be replicated with an mthread implementaiton.

        

        Dependencies

        ------------

        

        cacheman -- for persistent caching

        

        Features

        --------

        

        -  See http://hunspell.sourceforge.net/

        

        How to use

        ----------

        

        Below are some simple examples for how to use the repository.

        

        TODO FILL IN

        ~~~~~~~~~~~~

        

        Navigating the Repo

        -------------------

        

        hunspell

        ~~~~~~~~

        

        Package wrapper for the repo.

        

        tests

        ~~~~~

        

        All unit tests for the repo.

        

        Language Preferences

        --------------------

        

        -  Google Style Guide

        -  Object Oriented (with a few exceptions)

        

        TODO

        ----

        

        -  Add mthreads alongside pthreads for bulk operations

        -  Fix blocking issues for Windows usage (see above)

        -  Remove cacheman dependency

        

        Author

        ------

        

        Author(s): Tim Rodriguez and Matthew Seal

        

        © Copyright 2014, `OpenGov <http://opengov.com>`__

        
Keywords: hunspell,spelling,correction
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2 :: Only
