A bot that allows anyone on a server to write simple text notes for anyone to read.
This was inspired by Telegram bots that I often see on some channels of which I’m a member.
The bot had a bug where it would crash after being used on multiple servers at once. I don’t really have the time nor interest to fix it but feel free to try if you want to!
- Python 3 (tested on 3.7.3)
- Discord.py (tested on 1.3.3)
- Create a
discord_token.txt
file at the project’s root containing the bot’s token - Execute
main.py
:python3 main.py
This is a simple bot to take notes, here are the available commands:
* !help - shows this help message
* !notes - show a list of all notes available to read
* !note <name> - read note <name>
* !writenote <name> <content> - write <content> to note <name>, replacing the current content if the note already exists
* !deletenote <name> - delete note <name>
Made with ❤️ by GilDev! (https://gildev.dev/projets/simplenotesdiscordbot)
- Logs should be shown through the
logging
package. - Maybe the
!notes
command could send an embed instead of a flat text, with links on each note name to quickly read one by clicking on its name.