The task: i have a Chart that feeds of some data which is continuosly updated throughout the day. Specifically, the data is extracted from the web, it's written in the database and such database is read by a django view and later visualized in the aforementioned Chart.
The problem: I want the user to see the new data without reloading the page. Looking online, using Django, i think I have to link it to a rest api, the problem is that in practice i have no cliente how to set it up.
The question: is this the best way to do it? If so, could you point me to some tutorials that make this happen?