emoji-converter

A Python package for converting text to emoji and emoji to text.


Keywords
emoji, converter, text, to
License
MIT
Install
pip install emoji-converter==0.1.2

Documentation

Emoji converter

A Python package for converting emojis to text and text to emojis.


## Example

import emoji_converter

# Convert emoji to text
emoji_text = emoji_converter.convert_emoji_to_text("Hello! 😊")
print(emoji_text)  # Output: Hello! 😊

# Convert text to emoji
text_emoji = emoji_converter.convert_text_to_emoji("Hello! &#128522")
print(text_emoji)  # Output: Hello! 😊

License

This project is licensed under the MIT License. See the LICENSE file for more information.