Store all bot messages
See original GitHub issueHow would I store all the context.event.message.text
for every request from all users without programming it into each handler?
My storing these it will be a great tool to see which commands are popular and most mis-typed. Also a great way to see indirectly the new commands people are looking for.
Issue Analytics
- State:
- Created 6 years ago
- Comments:6
Top Results From Across the Web
storing messages with a discord bot - Stack Overflow
If you want to store all the information of the message, you can do: file.write(f'{message}\n'). or file.write(str(message) + '\n').
Read more >Can Discord bots store messages from DM's if deleted? - Reddit
There's nothing stopping a bot from saving all information it can get about every message it sees. Pretty sure most bots don't do...
Read more >How to STORE Information with a Discord Bot! - YouTube
Want to be able to STORE information using a Discord Bot ? Want to be able to store data and information in a...
Read more >Telegram bot message stores in categorized mode · Issue #269
Project description If possible, develop a Telegram bot, that archives any message that forward to it in categorize and get them back via...
Read more >How to Gather Message Data Using a Discord Bot From ...
To do so, we use the on_message() asynchronous function from the discord.py library, which runs every time a new message is sent. Then,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Bottender has three different approaches to get this done, but we haven’t figured out which one is better yet.
Express:
Koa:
The approaches have been elaborated in https://github.com/Yoctol/bottender/issues/168#issuecomment-358838078