import Estrapy
import asyncio
async def function():
print(f"A Running GIF: {await Estrapy.Sfw.run()}")
print(f"A Hug GIF: {await Estrapy.Sfw.hug()}")
asyncio.run(function())
import Estrapy
@bot.command()
async def run(ctx): # Without Embed
await ctx.send(Estrapy.Sfw.run())
@bot.command()
async def run(ctx): # With Embed
embed = discord.Embed(title="Running GIF")
embed.set_image(url=await Estrapy.Sfw.run())
await ctx.send(embed=embed)