If im making a bot that requires users to have their own settings based on their choices, I want to store these settings in a database. What would this best approach to this be? Does reading the settings in from a .csv file into a pandas df locally work well even if I need to update the settings potentially frequently? (updating the pandas df that is) Then I could re-write the df to the .csv periodically for future times the code is executed?
Other approaches I imagine are some SQL database I assume but I have minimal experience with that and really databases in general. I don't have any code for this yet im just wondering how to proceed.