diff --git a/README.md b/README.md index d2c952a..b9c03fa 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,7 @@ malid = gifs.get_malId(gif) #get the ID of the gif's anime myanimelist page. * Cuddle * Dance * Disgust +* Exploding * Facedesk * Facepalm * Flick @@ -55,6 +56,7 @@ malid = gifs.get_malId(gif) #get the ID of the gif's anime myanimelist page. * Lick * Love * Marry +* Nod * Nosebleed * Nuzzle * Pat @@ -75,6 +77,12 @@ malid = gifs.get_malId(gif) #get the ID of the gif's anime myanimelist page. * Sorry * Spank * Stare +* Tease +* Threat +* Tickle +* Tired +* Wave +* Yawn **Special Category List** diff --git a/animegifs/animegifs.py b/animegifs/animegifs.py index d9a4b34..71f38d4 100644 --- a/animegifs/animegifs.py +++ b/animegifs/animegifs.py @@ -13,11 +13,11 @@ def get_gif(self, category: str) -> str: Args: category (str): Valid categories: attack, bite, bloodsuck, blush, bonk, - brofist, cry, cuddle, dance, disgust, facedesk, facepalm, flick, flirt, + brofist, cry, cuddle, dance, disgust, exploding, facedesk, facepalm, flick, flirt, handhold, happy, harass, highfive, hug, icecream, insult, kill, kiss, - lick, love, marry, nosebleed, nuzzle, pat, peck, poke, popcorn, pout, + lick, love, marry, nod, nosebleed, nuzzle, pat, peck, poke, popcorn, pout, punch, punish, random, run, sad, scared, shoot, shrug, sip, slap, smirk, - sorry, spank, stare. + sorry, spank, stare, tease, threat, tickle, tired, wave, yawn. Returns: gif: gif (url) -> str diff --git a/animegifs/distutils/gifs.py b/animegifs/distutils/gifs.py index 4bac3d1..e225fe3 100644 --- a/animegifs/distutils/gifs.py +++ b/animegifs/distutils/gifs.py @@ -8,16 +8,20 @@ "bite", 'bloodsuck', 'blush', 'bonk', 'brofist', 'cry', 'cuddle', 'dance', 'disgust', + 'exploding', 'facedesk', 'facepalm', 'flick', 'flirt', 'handhold', 'happy', 'harass', 'highfive', 'hug', 'icecream', 'insult', 'kill', 'kiss', 'lick', 'love', 'marry', - 'nosebleed', 'nuzzle', + 'nod', 'nosebleed', 'nuzzle', 'pat', 'peck', 'poke', 'popcorn', 'pout', 'punch', 'punish', 'random', 'run', - 'sad', 'scared', 'shoot', 'shrug', 'sip', 'slap', 'smirk', 'sorry', 'spank', 'stare'] + 'sad', 'scared', 'shoot', 'shrug', 'sip', 'slap', 'smirk', 'sorry', 'spank', 'stare', + 'tease', 'threat', 'tickle', 'tired', + 'wave', + 'yawn'] def authentication(): response = requests.post("https://enkidu-app-5a3qq2fqya-uc.a.run.app/key1") diff --git a/setup.py b/setup.py index 1d78ede..0ea336a 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ long_description = "\n" + fh.read() LONG_DESCRIPTION = long_description -VERSION = '0.6.0' +VERSION = '0.6.1' setup( name='animegifs',