Metadata-Version: 2.1
Name: discorebots
Version: 0.0.75
Summary: Package to create discord bots its easy!
Home-page: UNKNOWN
Author: SScefaLI
Author-email: birka11@list.ru
License: UNKNOWN
Description: # 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
        token="bot token"
        )
        
        bot.onWebsocketResponse("Bot is ready to use!") #log ready
        bot.onClientMessage() #acess bot messages
        
        bot.addCommand(
        name = "ping",
        code = "Pong! $pingms" #if you want change prefix in command add: prefix="new prefix"
        )
        
        bot.addCommand(
        name = "uptime",
        code = "Uptime: $uptime"
        )
        
        bot.start() #start client
        ```
        
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
