I'm looking for ways to visualize tick data and put it on a website. I've came across the below methods that have clear limitations.
I am aware that it's possible with node.js libraries but I dont want javascript at all because a) I hate JS as a language, b) d3.js it seems like a overkill for a small project.
Plotly + dash can host real time python applications but foundationally it only support interval updates, not tick updates. It is possible to hack it by setting update function to high frequency but I'm looking for a solution designed for this specific application. This would be my fallack soln if nothing better comes up.
I also came across articles that describes using matplotlib.animations, but I am not aware of a way to put matplotlib live feed on a server website.
Some other articles describe exporting images daily with matplotlib which I find as an abusive usage of the term realtime.
Finally, Python only please.