Metadata-Version: 1.1
Name: localspelling
Version: 0.9
Summary: Translates input between UK and US spelling
Home-page: https://fastdatascience.com
Author: Thomas Wood
Author-email: UNKNOWN
License: MIT
Description: Local spelling
        ==============
        
        Developed by Fast Data Science, https://fastdatascience.com
        
        Source code at https://github.com/fastdatascience/localspelling
        
        Python library for localising spelling between British and American conventions, conserving case.
        
        Please note this library converts only spelling variants such as US "honour" vs UK "honor".
        
        It does not localise vocabulary such as "pavement" vs "sidewalk" or "aubergine" vs "eggplant".
        
        It also does not localise spellings where there is more than one correct conversion, such as US "program",
        
        which corresponds to both "programme" and "program" in British spelling.
        
        Requirements
        ============
        
        Python 3.6 and above
        
        Installation
        ============
        
        ::
        
          pip install localspelling
        
        Usage examples
        ==============
        
        .. code:: python
        
          from localspelling import convert_spelling
          convert_spelling("it has been an honor", "gb")
        
        outputs 'it has been an honour'
        
        Who to contact
        ==============
        
        Thomas Wood at https://fastdatascience.com
        
        
Keywords: spelling,localisation,localization,uk,us,british english,us english
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
