I'm building a Flask web application. I use an API to retrieve data once per day. The data is returned as JSON. The JSON is stored in a file, and is sent to the client each time they access the site. The application uses an SQLite database to keep track of user information and user-associated data.
How should I go about storing the data received from the API? Would it be preferable to store it in the database since it is just updated once per day, or should I keep the response in a JSON format as I do currently?