Emojis for Python
Project description
Emojis for Python
About
This library allows you to emojify content such as: This is a message with emojis :smile: :heart:
See the Emoji cheat sheet for more aliases.
Emoji database based on gemoji.
Example
>>> import emojis
>>> emojis.encode('This is a message with emojis :smile: :heart:')
'This is a message with emojis 😄 ❤️'
>>> emojis.decode('This is a message with emojis 😄 ❤️')
'This is a message with emojis :smile: :heart:'
>>> emojis.get('Prefix 😄 ❤️ 😄 ❤️ Sufix')
{'😄', '❤️'}
>> emojis.count('😄 ❤️ 😄 ❤️')
4
>>> emojis.count('😄 ❤️ 😄 ❤️', unique=True)
2
Installation
Install emojis with pip.
pip3 install -U emojis
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
emojis-0.3.0.tar.gz
(19.9 kB
view hashes)
Built Distribution
emojis-0.3.0-py3-none-any.whl
(21.2 kB
view hashes)