This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from requests import get | |
def emojis() -> str: | |
page = get("https://www.unicode.org/Public/UCD/latest/ucd/emoji/emoji-data.txt") | |
lines = page.text.split("\n") | |
blacklist = [ # blacklist of element who are not really emojis | |
"number sign", | |
"asterisk", | |
"digit zero..digit nine", |