Storing information permanently #9180
-
I'm writing a moderation bot for my server and I need to know how many strikes each member has. How do I store that? |
Beta Was this translation helpful? Give feedback.
Answered by
lightlybakedman
Jan 15, 2023
Replies: 2 comments 6 replies
-
You'd store this data inside a database such as sqlite or postgresql. Use async libraries for these though, like asqlite/aiosqlite and asyncpg. |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
mcc-devel
-
This has been concludedPlease do not send further messages. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You'd store this data inside a database such as sqlite or postgresql. Use async libraries for these though, like asqlite/aiosqlite and asyncpg.