diff options
author | 2021-04-15 19:07:15 +0530 | |
---|---|---|
committer | 2021-04-15 19:07:15 +0530 | |
commit | 01c61ec41acf38384450b25875d05e5ff1c50f5d (patch) | |
tree | 95ca1401bd5579ee964cc079e27e34748bde9d52 /bot/exts/evergreen/status_cats.py | |
parent | Merge branch 'master' into reddit_migration (diff) | |
parent | Merge pull request #679 from python-discord/vcokltfre/fix/timed-error-help (diff) |
Merge branch 'main' into reddit_migration
Diffstat (limited to 'bot/exts/evergreen/status_cats.py')
-rw-r--r-- | bot/exts/evergreen/status_cats.py | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/bot/exts/evergreen/status_cats.py b/bot/exts/evergreen/status_cats.py deleted file mode 100644 index 586b8378..00000000 --- a/bot/exts/evergreen/status_cats.py +++ /dev/null @@ -1,33 +0,0 @@ -from http import HTTPStatus - -import discord -from discord.ext import commands - - -class StatusCats(commands.Cog): - """Commands that give HTTP statuses described and visualized by cats.""" - - def __init__(self, bot: commands.Bot): - self.bot = bot - - @commands.command(aliases=['statuscat']) - async def http_cat(self, ctx: commands.Context, code: int) -> None: - """Sends an embed with an image of a cat, potraying the status code.""" - embed = discord.Embed(title=f'**Status: {code}**') - - try: - HTTPStatus(code) - - except ValueError: - embed.set_footer(text='Inputted status code does not exist.') - - else: - embed.set_image(url=f'https://http.cat/{code}.jpg') - - finally: - await ctx.send(embed=embed) - - -def setup(bot: commands.Bot) -> None: - """Load the StatusCats cog.""" - bot.add_cog(StatusCats(bot)) |