I built a flask app that has a feature that depends on the time. The problem is that the time only updates if I reload the app. I am using the datetime module in my script, and it works, but it seems to store the time from when the whole webapp is reloaded instead of when i go to the URL and view the page. Is there a way to get the flask script to update the current time when I visit the page? Like is this a cache thing or just the way flask works?