Separate emojis out into a config file to make it easier to update / curate

This commit is contained in:
Campbell Alden 2022-08-23 09:42:04 +09:00
parent 011cc71d22
commit 590cda3066
2 changed files with 170 additions and 1 deletions

View file

@ -4,7 +4,8 @@ import re
import random import random
import sys import sys
EMOJIS = ["blobcat_cookie","boat-cat","bubbles-cat","cat-confused","cat-cook","cat-on-the-laptop","cat-roll","cat-shook","cat-skype","catcat","catdance","caterpie","catjam","catsurprise","cattyping","cat_blush","cat_type","crazycat","gatocat","grumpycat","hungry_cat","nerd-cat","octocat1","octocat2","octocat3","shrodingers-cat","super_cat","surprised-cat","the-very-hungry-caterpillar","tycat","vacationing","vibingcat","villain-cat","confused-dog","cool-doge","dancing_dog","doge","dogjam","heart-eyes-dog","jakethedog1","jakethedog2","pundog","walking-the-dog","pogsire","ayaya","angryowl","audioowl","bouquet_owl","chef_owl","chocolate_owl","coffee-owl","confusedowl","coolowl","creepyowl","cupid_owl","cupid_owl_02","deadowl","dearleaderowl","dnowl","eikaiwaowl","eve-owl","eve-owl-evil","fakeowl","investigate-owl","jenkinsowl","look-owl","loopyowl","loveowl","love_letter_owl","mama-owl","mild-surprise-owl","owl-travel","owl_celebration","owl_christmas_stocking","owl_christmas_tree","owl_decorate","owl_ginger_cookie","owl_santa","owl_serious","owl_skating","owl_snowman","owl_snow_throwing","owl_toast","papa-owl","pinowl","realowl","realowl_back","realowl_guruguru","realowl_side","sadowl","sakura_owl","steampunk-owl","stopowl","surprise-owl","take-my-money-owl","tonakaiowl","valentine_gift_owl","winkowl","meow-popcorn","meowth","meow_alien","meow_angel","meow_angery2","meow_angry","meow_attention","meow_beanbag","meow_beret-coffee","meow_birthday","meow_blep","meow_bongoderp","meow_bounce","meow_brokenheart","meow_burger","meow_buzz","meow_camera","meow_code","meow_coffee","meow_coffee2","meow_comfy","meow_comfydonut","meow_comfysmirk","meow_comfy_coffee","meow_coy","meow_crazy","meow_cry","meow_dab","meowrainjoy","meow_dance","meow_dead","meow_devil-fire","meow_distrust","meow_drink","meow_dundundun","meow_dunno","meow_evil","meow_eyespin","meow_ez","meow_fat","meow_fingerguns","meow_flame_thrower","meow_flower","meow_giggle","meow_glare-zoom","meow_glowsticks","meow_googlytrash","meow_grin","meow_headache","meow_headphones","meow_heart","meow_hug","meow_hungry","meow_knife","meow_lurk","meow_mac","meow_melt","meow_mustache","meow_nix","meow_noplease","meow_nyan","meow_party","meow_pizza","meow_pop","meow_pout","meow_pressure","meow_sad","meow_sick","meow_sign","meow_sleep","meow_spy","meow_surprised","meow_sweats","meow_tableflip","meow_this","meow_thumbsdown","meow_tired","meow_wobble","meow_wow"] with open('./emojis.txt', 'r') as emoji_file:
EMOJIS = [l.strip() for l in emoji_file.readlines()]
def mine_tags(tags, place): def mine_tags(tags, place):
if place is None or not 'tags' in place: if place is None or not 'tags' in place:

168
emojis.txt Normal file
View file

@ -0,0 +1,168 @@
audioowl
ayaya
blobcat_cookie
boat-cat
bouquet_owl
bubbles-cat
cat-confused
cat-cook
cat-on-the-laptop
cat-roll
cat-shook
cat-skype
cat_blush
cat_type
catcat
catdance
caterpie
catjam
catsurprise
cattyping
chef_owl
chocolate_owl
coffee-owl
confused-dog
confusedowl
cool-doge
coolowl
crazycat
creepyowl
cupid_owl
cupid_owl_02
dancing_dog
deadowl
dnowl
doge
dogjam
eikaiwaowl
eve-owl
eve-owl-evil
fakeowl
gatocat
grumpycat
heart-eyes-dog
hungry_cat
investigate-owl
jakethedog1
jakethedog2
jenkinsowl
look-owl
loopyowl
love_letter_owl
loveowl
mama-owl
meow-popcorn
meow_alien
meow_angel
meow_attention
meow_beanbag
meow_beret-coffee
meow_birthday
meow_blep
meow_bongoderp
meow_bounce
meow_brokenheart
meow_burger
meow_buzz
meow_camera
meow_code
meow_coffee
meow_coffee2
meow_comfy
meow_comfy_coffee
meow_comfydonut
meow_comfysmirk
meow_coy
meow_crazy
meow_cry
meow_dab
meow_dance
meow_dead
meow_devil-fire
meow_distrust
meow_drink
meow_dundundun
meow_dunno
meow_evil
meow_eyespin
meow_ez
meow_fat
meow_fingerguns
meow_flame_thrower
meow_flower
meow_giggle
meow_glare-zoom
meow_glowsticks
meow_googlytrash
meow_grin
meow_headphones
meow_heart
meow_hug
meow_hungry
meow_knife
meow_lurk
meow_mac
meow_melt
meow_mustache
meow_nix
meow_noplease
meow_nyan
meow_party
meow_pizza
meow_pop
meow_pout
meow_pressure
meow_sign
meow_sleep
meow_spy
meow_surprised
meow_sweats
meow_tableflip
meow_this
meow_tired
meow_wobble
meow_wow
meowrainjoy
meowth
mild-surprise-owl
nerd-cat
octocat1
octocat2
octocat3
owl-travel
owl_celebration
owl_christmas_stocking
owl_christmas_tree
owl_decorate
owl_ginger_cookie
owl_santa
owl_serious
owl_skating
owl_snow_throwing
owl_snowman
owl_toast
papa-owl
pinowl
pogsire
pundog
realowl
realowl_back
realowl_guruguru
realowl_side
sakura_owl
shrodingers-cat
steampunk-owl
stopowl
super_cat
surprise-owl
surprised-cat
take-my-money-owl
the-very-hungry-caterpillar
tonakaiowl
tycat
vacationing
valentine_gift_owl
vibingcat
villain-cat
walking-the-dog
winkowl