List of helpful shortcuts for faster coding
If you have any other helpful shortcuts, feel free to add in the comments of this gist :)
| # standard library | |
| import os | |
| # dash libs | |
| import dash | |
| from dash.dependencies import Input, Output | |
| import dash_core_components as dcc | |
| import dash_html_components as html | |
| import plotly.figure_factory as ff | |
| import plotly.graph_objs as go |
| from flask import Flask, render_template | |
| app = Flask(__name__) | |
| @app.route('/') | |
| @app.route('/index') | |
| def index(chartID = 'chart_ID', chart_type = 'bar', chart_height = 350): | |
| chart = {"renderTo": chartID, "type": chart_type, "height": chart_height,} | |
| series = [{"name": 'Label1', "data": [1,2,3]}, {"name": 'Label2', "data": [4, 5, 6]}] | |
| title = {"text": 'My Title'} |