Metadata-Version: 2.1
Name: cheesyutils
Version: 0.0.35
Summary: A python package of miscelanious utilities
Home-page: https://github.com/CheesyGamer77/cheesyutils
Author: CheesyGamer77
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# cheesyutils

A number of miscelanious utilities, mostly for writing bots in discord.py

## Usage

You can install the package by running the following command:

```sh
pip install -U cheesyutils
```

You can import the installed package by running the following python code

```py
from cheesyutils.discord_bots import DiscordBot
```

Creating a simple Discord bot with only the builtin Meta commands:

```py
from cheesyutils.discord_bots import DiscordBot

bot = DiscordBot(
    prefix=".",
    color="#a0365c"
)

bot.run("YOUR TOKEN HERE")
```


