8000 GitHub - jimofthecorn/pyemojify: Substitutes emoji aliases to emoji raw characters. Simple but sweet :smile:
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

jimofthecorn/pyemojify

 
 

Repository files navigation

Pyemojify

Latest Version Build Status Python Versions

Substitutes emoji aliases to emoji raw characters. Simple but sweet 😄

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, all the glories should belong to mrowa44.

License

MIT

About

Substitutes emoji aliases to emoji raw characters. Simple but sweet 😄

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.7%
  • Makefile 0.3%
0