Metadata-Version: 1.1
Name: bogo
Version: 1.0.0
Summary: Python 3 library for implementing Vietnamese input method editors with a purely functional interface.
Home-page: https://github.com/BoGoEngine/bogo-python
Author: Trung Ngo
Author-email: ndtrung4419@gmail.com
License: UNKNOWN
Download-URL: https://github.com/BoGoEngine/bogo-python/archive/v1.0.tar.gz
Description: BoGo is a Python 3 Vietnamese input method conversion library. This library
        is intentionally functional with no internal state and side-effect.
        
        Usage
        -----
        
        >>> import bogo
        >>> bogo.process_sequence('meof')
        'mèo'
        >>> bogo.process_sequence('meo2', rules=bogo.get_vni_definition())
        'mèo'
        >>> bogo.process_sequence('system')
        'system'
        >>> bogo.process_sequence('system', skip_non_vietnamese=False)
        'sýtem'
        
        More help available with:
        
        >>> help(bogo.bogo)
        
        Some functions from bogo.bogo are exported to package toplevel:
        
        - `process_key()`
        - `process_sequence()`
        - `get_telex_definition()`
        - `get_vni_definition()`
        
        BoGo is extensively tested with Python 3.2 and Python 3.3.
        
Keywords: vietnamese
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Topic :: Text Processing :: Linguistic
Classifier: Topic :: Software Development :: Libraries :: Python Modules
