Metadata-Version: 2.1
Name: randseal
Version: 2.2.1
Summary: Generates a random seal image for py-cord
Home-page: https://github.com/mariohero24/randseal
Author: Guard Boi
Author-email: guard@cow.futbol
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENCE

# randseal
Simple package that can produce a seal image. The image is then output as a `discord.File` or `discord.Embed` for Pycord.

### Usage example
```py
import randseal
from discord import Bot, Intents

bot = Bot(intents=Intents.default())
client = randseal.Client()

@bot.slash_command()
async def sealimg(ctx):
  file=await client.asyncFile()
  await ctx.respond(file=file)

@bot.slash_command()
async def sealembed(ctx):
  await ctx.respond(embed=client.Embed())

bot.run("token")
```
