Metadata-Version: 1.1
Name: pyhipku
Version: 0.2.1
Summary: Encode any IP address as a haiku
Home-page: http://github.com/lord63/pyhipku/
Author: lord63
Author-email: lord63.j@gmail.com
License: MIT
Description: PyHipku
        =======
        
        |Latest Version| |Build Status| |Coverage Status|
        
        A tiny python library to encode IPv6 and IPv4 addressed as haiku. This a
        python port of
        `hipku <https://github.com/gabemart/hipku>`__\ (javascript).
        
        Install
        -------
        
        ::
        
            $ pip install pyhipku
        
        Usage
        -----
        
        Encode the IP address to haiku
        
        ::
        
            >>> from pyhipku import encode
            >>> print(encode('127.0.0.1'))
            The hungry white ape
            aches in the ancient canyon.
            Autumn colors crunch.
        
        Decode haiku to IP address
        
        ::
        
            >>> from pyhipku import decode
            >>> decode('The hungry white ape\naches in the ancient canyon.\nAutumn colors crunch.\n')
            '127.0.0.1'
        
        License
        -------
        
        MIT
        
        .. |Latest Version| image:: http://img.shields.io/pypi/v/pyhipku.svg
           :target: https://pypi.python.org/pypi/pyhipku
        .. |Build Status| image:: https://travis-ci.org/lord63/pyhipku.svg
           :target: https://travis-ci.org/lord63/pyhipku
        .. |Coverage Status| image:: https://coveralls.io/repos/lord63/pyhipku/badge.svg
           :target: https://coveralls.io/r/lord63/pyhipku
        
Keywords: ip haiku
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: POSIX
Classifier: Operating System :: POSIX :: Linux
Classifier: License :: OSI Approved :: MIT 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
Classifier: Topic :: Software Development :: Libraries :: Python Modules
