MCPcopy Index your code
hub / github.com/geekcomputers/Python / search_emoji

Function search_emoji

Emoji Dictionary/emoji_dictionary.py:229–235  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

227
228# function to search emoji
229def search_emoji():
230 word = inputentry.get()
231 if word == "":
232 outputtxt.insert(END, "You have entered no emoji.")
233 else:
234 means = emoji.demojize(word)
235 outputtxt.insert(END, "Meaning of Emoji : " + str(word) + "\n\n" + means)
236
237
238# main window created

Callers 1

__init__Method · 0.85

Calls 2

getMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected