Skip to content

CharmCord is the best python string-based package for Discord bot creators!

License

Notifications You must be signed in to change notification settings

JamesBond5/CharmCord

 
 

Repository files navigation

CharmCord

CharmCord is the best python string-based package for Discord bot creators!


Stats ✨

PyPI PyPI - Downloads Downloads PyPI - License All Contributors


logo


CharmCord Setups

Install CharmCord

pip install CharmCord
Warning: Package is still in Alpha and not meant to be used on public bots

Simple Bot:

from CharmCord import CharmClient
# ---------------Imports--------------------

bot = CharmClient(prefix="!", case_insensitive=False, intents=("all",))

bot.variables({
    "money": 199
})

bot.onReady(
    Code="$console[Bot is Ready]"
)

bot.command(
    Name="add-money",
    Code="""
    $setUserVar[$args[1];money;$args[2]]
    $sendMessage[$channelID;Added $$args[2] to $userName[$args[1]]'s account]
    """
    # !add-money 123456789 300 
    # This would add money to the user variable then 
    # send a confirmation message in the channel it 
    # was invoked
)

bot.command(
    Name="Ping", # Command Name
    Code="""
    $sendMessage[$channelID; Pong!! $ping]
    """ # Command Code
)


bot.run("*******<<TOKEN>>***********")

Slash Interactions/Outside Commands/Activity:

from CharmCord import CharmClient, setActivity
# ---------------Imports--------------------

# Activity message is the actual status, the type is whether it'll
# be a game status, listening status, etc
act = setActivity(message="my servers", type="watching")

# For Commands outside the main.py file, you should add the 
# load_command_dir parameter with the name of your command file
bot = CharmClient(prefix="!", case_insensitive=False, intents=("all",), activity=act,  load_command_dir="Commands")


bot.onReady(
    Code="$console[Bot is Ready]"
)


bot.slashCommand(
    Name="repeat", # Name of the slash command
    Args=["sentence"], #The required arguments
    Description="Repeats what you say", # Description of command
    Code="""
    $slashSend[$slashArgs[1]]
    """ # Code running on the command
)


bot.run("*******<<TOKEN>>***********")

New and still a work in progress

Contributors ✨

aoi.py-contributors

About

CharmCord is the best python string-based package for Discord bot creators!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%