首页 > 解决方案 > which frame to use? angular, or Dash by Plotly?

问题描述

I want to build a website updating share price regularly, and once click on certain symbol name, the history chart will show up.

I have a python based flask server, which provide API, so basically, the website should be able to quote data API regularly ( 10 sec at least ), and draw historical chart.

I am currently hesitating between python dash and angular. To be honest, I am more familiar with python, pandas stuff. Any advice?

标签: pythonangular

解决方案


使用 dash,您甚至不需要 API,您可以直接从后端工作,因为它默认在 Flask 之上运行,请查看此链接以了解如何将 Dash 图表与 Flask 应用程序集成。

Dash 还支持实时更新,所以如果您对 python 堆栈感觉更舒服,您应该使用 Dash。


推荐阅读