Metadata-Version: 2.1
Name: randseal
Version: 1.0.0
Summary: Generates a 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 example
```py
from randseal.get import seal
import discord

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

@bot.slash_command(description="Gets a random seal image")
async def seal(ctx):
	await ctx.respond(file=seal())

bot.run("token")
```
