= Flask(__name__)
@app.route('/')
def index():
bar = create_plot()
return render_template('index.html', plot=bar)
def create_plot():
data = [go.Scatter(x=[0, 1, 2, 3],
y=[0, 5, 0, 1])]
return json.dumps(data, cls=plotly.utils.PlotlyJSONEncoder)
if __name__ == '__main__':
app.run()
Причем здесь фласк?
А что не работает? Какую ошибку выдает?
Обсуждают сегодня