cat image command

master
michael 2020-09-08 16:52:29 -07:00
parent abebd84871
commit b6d1083040
1 changed files with 10 additions and 0 deletions

10
bot.py
View File

@ -208,6 +208,16 @@ async def birb(ctx):
url="http://random.birb.pw/img/{}".format(json.loads(birb_contents)["file"])
await ctx.send(embed=imgfun(msg, url))
@bot.command(aliases=['kitty', 'kitti'])
async def cat(ctx):
with urlopen(Request(url="http://aws.random.cat/meow", headers={'User-Agent': 'Mozilla/5.0'})) as json_return:
# get image filename
cat_contents = json_return.read()
msg="{0}, here is your random cat:".format(ctx.message.author.name)
# insert image filename into URL
url=json.loads(cat_contents)["file"]
await ctx.send(embed=imgfun(msg, url))
@bot.command(aliases=['latency'])
async def ping(ctx):
await ctx.send("`Bot latency: {}s`".format(round(bot.latency, 2)))