Hi guys,
I am exploring making a web app that will have pages that query a database, process the data, and display the data. It will never be changed based on the web app interactions (think stats for sports). I want to make this a mySQL database that would be updated ~once daily (as stats for new games are available).
I am confused how to do this using pythonanywhere. One option would be for a local machine to update the database, but that requires external access which doesn't seem to be popular. Another option might be to load the update scripts to my pythonanywhere and run them on consoles (this assuming I upgrade to a better account in the near future)?
I guess I'm just not sure the best way to accomplish this. Every web app example I can find uses databases that change based on the interactions in the web app, not a read-only one like I am doing here. My apologies if this is an obvious answer.
Thanks!