I have a simple website made with Flask and Peewee as the ORM that annotates the drinks everyone in the office gets to then, once a week or so, check who drink what, how much and when. I have a simple table named orders that looks like this:
Orders - Id, product, user, amount, price, date
And what I want to do is have a simple page where someone can consult what happened from a specific date to the current day (For example, from 14-02 to today 21-02). How do I make such query in peewee?