added cat!

This commit is contained in:
Helixu 2021-11-20 10:50:36 +00:00
parent 80a58cc32a
commit 0bb02f967d

8
bot.py
View file

@ -34,6 +34,14 @@ async def fox(ctx):
file = File(io.BytesIO(await resp.read()),filename='fox.jpg')
await ctx.send(random.choice(foxmsgs),file=file)
@bot.command(brief="cattttttt")
async def cat(ctx):
async with aiohttp.ClientSession() as session:
async with session.get('https://some-random-api.ml/animal/cat') as resp:
json = await resp.json()
await ctx.send(json["fact"])
await ctx.send(json["image"])
@bot.command(brief="gives you a fluffy panda")
async def panda(ctx):