A Python package for converting emojis to text and text to emojis.
You can install the "emoji-converter" package using pip:
pip install emoji-converter
## 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! 😊")
print(text_emoji) # Output: Hello! 😊
This project is licensed under the MIT License. See the LICENSE file for more information.