Metadata-Version: 2.1
Name: DiscBoard
Version: 0.5
Summary: A library written for simple backend development of bot dashboards in python
Home-page: UNKNOWN
Author: Pimpek01
Author-email: pimpek.pimposlaw@gmail.com
License: UNKNOWN
Keywords: python,discord.py,Dashboard
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown


# DiscBoard

A simple API Wrapper to create discord bot web panels



# Instalation

```

pip3 install -U DiscBoard

```



# Example Usage

```py

from DiscBoard import Application, Guild, DashConfig



DashConfig["BOT_TOKEN"] = "Your bot token"



my_bot = Application()

print(my_bot.get_guilds)



my_guild = Guild(guild_id=123)

print(my_guild.get_channels)



```



