Forwarded from IMO ALPHA TEST GROUP (1)
❤2
import json
# JSON ফাইল লোড করা
with open("custom_emojis.json", "r", encoding="utf-8") as f:
emojis = json.load(f)
# কাস্টম কোড দিয়ে ইমোজি সার্চ ফাংশন
def get_emoji_by_code(code):
for e in emojis:
if e["code"] == code:
return e["emoji"]
return None
# উদাহরণ
print(get_emoji_by_code("emo_cry_001")) # আউটপুট: 😭
print(get_emoji_by_code("emo_laugh_001")) # আউটপুট: 😂
# JSON ফাইল লোড করা
with open("custom_emojis.json", "r", encoding="utf-8") as f:
emojis = json.load(f)
# কাস্টম কোড দিয়ে ইমোজি সার্চ ফাংশন
def get_emoji_by_code(code):
for e in emojis:
if e["code"] == code:
return e["emoji"]
return None
# উদাহরণ
print(get_emoji_by_code("emo_cry_001")) # আউটপুট: 😭
print(get_emoji_by_code("emo_laugh_001")) # আউটপুট: 😂
❤2
Forwarded from SUHEL RANA
❤2