Metadata-Version: 1.1
Name: baas32
Version: 0.3.1
Summary: An alternative Python implementation of Douglas Crockford's base32 encoding scheme
Home-page: https://github.com/klaplong/baas32.git
Author: Bas van den Heuvel
Author-email: vdheuvel.bas@gmail.com
License: BSD
Download-URL: https://pypi.python.org/pypi/baas32/
Description: 
        baas32
        ================
        
        A Python module implementing the alternate base32 encoding as described
        by Douglas Crockford at: http://www.crockford.com/wrmg/base32.html.
        
        In `baas32`, this encoding is slightly altered.
        
        He designed the encoding to:
        
           * Be human and machine readable
           * Be compact
           * Be error resistant
           * Be pronounceable
        
        It uses a symbol set of 10 digits and 22 letters, excluding I, L O and
        S. Decoding is not case sensitive, and 'i' and 'l' are converted to '1', 'o' is
        converted to '0' and 's' is converted to '5'. Encoding uses only upper-case
        characters.
        
        Hyphens may be present in symbol strings to improve readability, and
        are removed when decoding.
        
        A check symbol can be appended to a symbol string to detect errors
        within the string.
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
