Metadata-Version: 1.1
Name: decimalize
Version: 1.0.0
Summary: decimalize is a package to convert radix flexibly.
Home-page: https://bitbucket.org/crohaco/decimalize
Author: crohaco
Author-email: crohaco.net@gmail.com
License: BSD License
Description: Requirements
        ============
        - Python 2.5 or later.
        
        Install
        =======
        
        .. code-block:: sh
        
         $ pip install decimalize
        
        History
        =======
        1.0.x
        -----
        - First release.
        
        
        Usage
        =====
        
        Basic Example
        -------------
        
        .. code-block:: python
        
         >>> import decimalize
         >>> manager = decimalize.Decimalize('0123456789abcdef')
         >>> manager.encode(255)
         'ff'
         >>> manager.decode('ffff')
         65535
        
        
        Multi Byte Example
        ------------------
        Please specify a unicode-string if you use multibyte charset.
        
        .. code-block:: python
        
         >>> import decimalize
         >>> manager = decimalize.Decimalize(
         ...    u'あいうえおかきくけこさしすせそたちつてとなにぬねの'
         ...    u'はひふへほまみむめもやゆよらりるれろわをん'
         ... )  # 46進数
         >>> print(manager.encode(500))
         さる
         >>> manager.decode(u'いぬ')
         68
         >>> # print(manager.encode(7308313824848881))
         >>> # print(manager.encode(2811963241313541391200))
        
Keywords: decimal,radix
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
