I have a web app and I want to display a quote everyday for all users.
I'm using https://theysaidso.com/api/ API.
There's a limit of 10 requests per hour, I only need to make 1 request everyday and display the quote for all users.
I made the scope of my request global and it's working, but I don't think it will change tomorrow, unless I rerun the code, which I can't do everyday.
Is there a solution or do I have to look for another API that doesn't have a request limit and send the request every time a user visits the homepage?
I'm using Flask as my back-end.