Metadata-Version: 1.1
Name: leetehao
Version: 0.1.0
Summary: ''
Home-page: https://github.com/myyang/leetehao
Author: Garfield
Author-email: ymy1019@gmail.com
License: BSD
Description: ===============================
        leetehao
        ===============================
        
        .. image:: https://img.shields.io/travis/myyang/leetehao.svg
                :target: https://travis-ci.org/myyang/leetehao
        
        .. comment image:: https://img.shields.io/pypi/v/leetehao.svg
                :target: https://pypi.python.org/pypi/leetehao
        
        
        .. comment * Documentation: https://leetehao.readthedocs.org.
        
        Features
        --------
        
        * Convert/inverse leet code
        * Convert/inverse morse code
        * Convert/inverse roman code
        
        Examples
        --------
        
        Morse
        
        .. code-block:: python
        
            >>> from leetehao import morse
            >>> morse.encode('hello world')
            '.... . .-.. .-.. --- / .-- --- .-. .-.. -..'
            >>> morse.encode('.... . .-.. .-.. --- / .-- --- .-. .-.. -..')
            'HELLO WORLD'
        
        
        
        Leet
        
        .. code-block:: python
        
            >>> from leetehao import leet
            >>> leet.encode('hello world')
            '}{[-[_[_()  vv()[z[_|)'
            >>> leet.encode('}{[-[_[_()  vv()[z[_|)')
            'HELLO WORLD'
        
        
        Roman numerals
        
        .. code-block:: python
        
            >>> from leetehao import roman
            >>> roman.encode(2549)
            'MMDXLIX'
            >>> roman.encode('MMDXLIX')
            2549
        
        License
        -------
        
        * Free software: BSD license
        
        
        
        
        History
        -------
        
        0.1.0 (2015-09-21)
        ~~~~~~~~~~~~~~~~~~
        
        * Added Leet and Morse both function and class type 
        * Added limited Roman function
        * Collect and made constants overwritable
        
Keywords: leetehao
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
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
