Metadata-Version: 1.1
Name: pyemojify
Version: 0.1.0
Summary: Substitutes emoji aliases (like :sparkling_heart:) to emoji raw characters.
Home-page: http://github.com/lord63/pyemojify
Author: lord63
Author-email: lord63.j@gmail.com
License: MIT
Description: Pyemojify
        =========
        
        |Latest Version| |Build Status|
        
        Substitutes emoji aliases to emoji raw characters. Simple but sweet
        :smile:
        
        Installation
        ------------
        
        ::
        
            $ pip install pyemojify
        
        Usage
        -----
        
        CLI
        ~~~
        
        Use ``pyemojify -t text``, for example:
        
        ::
        
            $ pyemojify -t "Life is short :smile: , use :sparkles: Python :sparkles:"
            Life is short 😄 , use ✨ Python ✨.
        
        Pyemojify also support pipeline, for example:
        
        ::
        
            $ echo "Life is short :smile: , use :sparkles: Python :sparkles:" | pyemojify
            Life is short 😄 , use ✨ Python ✨.
        
        This one is very useful for git commit messages, use the following one
        and you'll see you emoji friends again!
        
        ::
        
            $ git log --oneline --color | pyemojify | less
        
        API
        ~~~
        
        ::
        
            >>> from pyemojify import emojify
            >>> text = emojify("Life is short :smile: , use :sparkles: Python :sparkles:")
            >>> print text
            Life is short 😄 , use ✨ Python ✨.
        
        Credits
        -------
        
        It's a python port of the original
        `emojify <https://github.com/mrowa44/emojify>`__, all the glories should
        belong to `mrowa44 <https://github.com/mrowa44>`__.
        
        License
        -------
        
        MIT
        
        .. |Latest Version| image:: http://img.shields.io/pypi/v/pyemojify.svg
           :target: https://pypi.python.org/pypi/pyemojify
        .. |Build Status| image:: https://travis-ci.org/lord63/pyemojify.svg
           :target: https://travis-ci.org/lord63/pyemojify
        
Keywords: emoji cli
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.7
