Metadata-Version: 1.0
Name: pymoji
Version: 0.2.0
Summary: A emoji converter between unicode and ascii text.
Home-page: https://github.com/mapix/pymoji
Author: mapix
Author-email: mapix.me@gmail.com
License: MIT
Description: Pymoji
        ------
        
        A emoji converter between unicode and ascii text.
        
        Install & Usage
        ~~~~~~~~~~~~~~~
        ::
        
            pip install pymoji
        
        ::
        
            from pymoji import PyMoji
            moji = PyMoji()
            text = 'hello 😀  !'
            encoded_text = moji.encode(text)           # u'hello [:grinning]  !'
            decoded_text = moji.decode(encoded_text)   # u'hello 😀  !'
        
        
        External Resources
        ~~~~~~~~~~~~~~~~~~
        
        * `Emoji Categories <http://emojipedia.org/>`_
        * `Emoji Unicode Tables <http://apps.timwhitlock.info/emoji/tables/unicode>`_
        
Platform: UNKNOWN
