Metadata-Version: 2.1
Name: discorebots
Version: 0.0.60
Summary: Package to create discord bots its easy!
Home-page: UNKNOWN
Author: SScefaLI
Author-email: birka11@list.ru
License: UNKNOWN
Platform: UNKNOWN
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
Requires-Dist: discord
Requires-Dist: requests

# About

Module to create discord bots its easy!

#Example

```py
from discorebots import setupBot

bot = setupBot(
prefix=".", #provide your bot prefix
intents=True, #discord intents (if True pls enable intents in discordapp.com/developers/applications in your application bot)
sharding=True, #if you want sharding guilds
shardsAmount=2 #shards count
)

bot.onWebsocketResponse("Bot is ready to use!") #log ready
bot.onClientMessage() #acess bot messages

bot.addCommand(
name = "ping",
code = "Pong! $pingms"
)

bot.addCommand(
name = "uptime",
code = "Uptime: $uptime"
)

bot.start("token")
```


