Skip to content

Commit

Permalink
0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoSa-2000 committed Jun 8, 2023
1 parent 63ca904 commit af75a88
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 7 deletions.
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ from animegifs import animegifs

gifs = animegifs.Animegifs()

gif = gifs.get_gif(category) #return the url of the gif.
gif = gifs.get_gif(category) #gifs.get_gif('hug') and return the url of the gif.
mal = gifs.get_mal(gif) #get url of the gif's anime myanimelist page.
title = gifs.get_animetitle(gif) #get the title of the gif's anime.
malid = gifs.get_malId(gif) #get the ID of the gif's anime myanimelist page.
Expand Down Expand Up @@ -102,5 +102,14 @@ malid = gifs.get_malId(gif) #get the ID of the gif's anime myanimelist page.

# Troubleshooting and other

If you encounter an error raise an issue on the issue page: https://github.com/MarcoSa-2000/animegifs/issues
or join the discord server to request new categories, new functions, feedback and even errors.
If you encounter an error, please raise an issue on the issue page: https://github.com/MarcoSa-2000/animegifs/issues.
Alternatively, you can join my Discord server to request new categories, functions, provide feedback, or report any errors.
I do also have a multi-function Discord bot. Feel free to check out the web dashboard here: https://enkidu-app.github.io.

# Copyright

This repository doesn't include any copyrighted material.
If you happen to come across any copyrighted content within this repository (but hosted elsewhere) that you own or represent,
email me at **grest0grest@gmail.com**.
Please provide specific details about the copyrighted material and where it can be found.
Once I confirm your claim, I'll take immediate action to remove the identified material.
2 changes: 1 addition & 1 deletion animegifs/animegifs.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def get_gif(self, category: str) -> str:
handhold, happy, harass, highfive, hug, icecream, insult, kill, kiss,
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, tease, threat, tickle, tired, wave, yawn.
sorry, spank, stare, steal-magic, tease, threat, tickle, tired, wave, yawn.
Returns:
gif: gif (url) -> str
Expand Down
3 changes: 2 additions & 1 deletion animegifs/distutils/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ def __init__(self, gif, error="Method not yet available for this gif."):

class AuthTimeout(Exception):
"""
Authentication request timed out. Probably status 504 on server side. Check your connection too.
Authentication request timed out. Probably status error 504 on server side.
Check your connection too.
"""

def __init__(self, exc, error="Authentication request timed out."):
Expand Down
2 changes: 1 addition & 1 deletion animegifs/distutils/gifs.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
'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', 'steal-magic',
'tease', 'threat', 'tickle', 'tired',
'wave',
'yawn']
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
long_description = "\n" + fh.read()

LONG_DESCRIPTION = long_description
VERSION = '0.6.3'
VERSION = '0.6.4'

setup(
name='animegifs',
Expand Down

0 comments on commit af75a88

Please sign in to comment.