Command handler for dico.
Project description
dico-command
Command handler for dico.
Note: Docs is still not ready.
Example
import dico
import dico_command
bot = dico_command.Bot("YOUR_TOKEN_HERE", "!", intents=dico.Intents.full())
@bot.command("test")
async def test(ctx: dico_command.Context):
await ctx.send("Hello, World!")
bot.run()
Using Addon/module:
main.py:
import dico
import dico_command
bot = dico_command.Bot("YOUR_TOKEN_HERE", "!", intents=dico.Intents.full())
bot.load_module("addons.test")
bot.run()
addons/test.py:
import dico_command
class AddonTest(dico_command.Addon, name="Addon Test"): # name=... is optional
@dico_command.command(name="addon")
async def example(self, ctx: dico_command.Context):
await ctx.send(f"Hello! This is addon `{self.name}`.")
def load(bot):
# Implementing function `load` is required. You may do any actions here.
bot.load_addons(AddonTest)
def unload(bot):
# Implementing function `unload` is required. You may do any actions here.
bot.unload_addons(AddonTest)
Note that using async is forced unlike dico itself.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
dico-command-0.0.9.tar.gz
(10.0 kB
view hashes)
Built Distribution
Close
Hashes for dico_command-0.0.9-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a967a3c9756b067c0a87bf80a7893647b2f7945a515248775624eb86762d2317 |
|
MD5 | d192b616980526f46780177db25ab493 |
|
BLAKE2b-256 | a2bad697d317057eef96c2f9fc63caa8edfdb69691fb439cae630237f7fcbe31 |