Metadata-Version: 2.1
Name: randseal
Version: 1.4.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 produces a seal image. The image is then output as a `discord.File` for Pycord.

### Usage examples
```py
import randseal
from discord import Bot, Embed

bot = Bot(intents=discord.Intents.default())

@bot.slash_command()
async def sealimg(ctx):
	await ctx.respond(file=ranseal.get.file())

@bot.slash_command()
async def sealembed(ctx, title):
	embed = discord.Embed(colour=randseal.utils.blank(), title=title)
	await ctx.respond(embed=ranseal.get.embed(embed=embed))

bot.run("token")
```
