1
0
Fork
You've already forked pycord-template
0
a template to make a new Pycord bot. mostly for my own use, includes util to make success/failure embeds and logs w/ colorama.
  • Python 100%
2024年02月04日 05:09:19 -05:00
cogs initial commit 2024年02月04日 05:04:12 -05:00
.gitignore initial commit 2024年02月04日 05:04:12 -05:00
configuration.yaml initial commit 2024年02月04日 05:04:12 -05:00
LICENSE Initial commit 2024年02月04日 09:59:46 +00:00
main.py initial commit 2024年02月04日 05:04:12 -05:00
README.md Update README.md 2024年02月04日 10:07:14 +00:00
requirements.txt initial commit 2024年02月04日 05:04:12 -05:00
util.py initial commit 2024年02月04日 05:04:12 -05:00

pycord-template

a template to make a new Pycord bot.

includes

  • util functions for logging and embeds
  • cogs
  • prefixed commands
  • basic configuration

util tutorial

  1. import from util import log, LogType, embed, EmbedType
  2. use

logging

log(yourmessage: str, LogType.<INFO/WARNING/ERROR>: LogType = INFO)

embed

embed(title: str, description: str, EmbedType.<INFO/SUCCESS/ERROR>: EmbedType = INFO)

configuration

by default you can find the bot token, bot owner and prefix. note that all intents are enabled too by default.