Find what you can cook with your emojis
install the package:
pip install emoji-meals
then start using it:
from emoji-meals import mealify
mealify("๐","๐
","๐ง")
>>> ๐
mealify("๐","๐ฐ") #=> "๐ฅฎ"
# Provide ingredients in any order ๐ฏ๐ฏIQ ๐ง ๐ฅ
mealify("๐ฐ", "๐") #=> "๐ฅฎ"
# Use more than two items!
mealify("๐","๐
","๐ง") #=> "๐"
# Provde a single argument!
mealify("๐๐
๐ง") #=> "๐"
# Group your ingredients however you want!
mealify("๐๐
", "๐ง") #=> "๐"
# After all this eating, I need a drink
mealify("๐ถ","๐พ","๐ท","๐ธ","๐ถ","๐น","๐บ","๐ป","๐ฅ","๐พ","๐ฅ") #=> "๐คฎ"
This project is licensed under the MIT License.