Metadata-Version: 1.1
Name: regextypofix
Version: 1.0.2
Summary: Simple Regex spellchecker based on Wikipedia's RegExTypoFix project
Home-page: https://github.com/rmdort/regextypofix
Author: Vinay M
Author-email: rmdort@gmail.com
License: MIT, CC-BY-SA
Download-URL: https://pypi.python.org/pypi/regextypofix/
Description: RegEx Typo Fix
        ====
        
        Regex spellchecker based on Wikipedia's `RegExTypoFix` project
        
        .. _RegExTypoFix: https://en.wikipedia.org/wiki/Wikipedia:AutoWikiBrowser/Typos
        
        The dictionary prepared by wikipedia contains most common incorrectly spelled words.
        
        Usage
        -----
        
        The easiest way to install it is using pip::
        
            pip install regextypofix
        
            from regextypofix import correct
            print (correct('whiel selled'))
        
        Add more patterns
        -----
        You can either create your own dictionary or just append to the default dictionary::
        
            from regextypofix import correct, create_dictionary
        
            # Build default dictionary
            default_dictionary = create_dictionary()
        
            # User defined dictionary
            user_dictionary = create_dictionary('./path_to_text_files')
        
            # Complete dictionary
            dictionary = default_dictionary + user_dictionary
        
            # Now pass dictionary to `correct`
        
            correct('whiel selled', dictionary=dictionary)
        
        
Keywords: typo spelling grammar text
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: Text Processing :: Filters
