Skip to content

Instantly share code, notes, and snippets.

@alysivji
Last active January 26, 2024 18:11
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 15 You must be signed in to fork a gist
  • Save alysivji/e85a04f3a9d84f6ce98c56f05858ecfb to your computer and use it in GitHub Desktop.
Save alysivji/e85a04f3a9d84f6ce98c56f05858ecfb to your computer and use it in GitHub Desktop.
Dash app template
# 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
# pydata stack
import pandas as pd
from sqlalchemy import create_engine
# set params
conn = create_engine(os.environ['DB_URI'])
###########################
# Data Manipulation / Model
###########################
def fetch_data(q):
df = pd.read_sql(
sql=q,
con=conn
)
return df
#########################
# Dashboard Layout / View
#########################
# Set up Dashboard and create layout
app = dash.Dash()
app.css.append_css({
"external_url": "https://codepen.io/chriddyp/pen/bWLwgP.css"
})
app.layout = html.Div([
# Page Header
html.Div([
html.H1('Project Header')
]),
])
#############################################
# Interaction Between Components / Controller
#############################################
# Template
@app.callback(
Output(component_id='selector-id', component_property='figure'),
[
Input(component_id='input-selector-id', component_property='value')
]
)
def ctrl_func(input_selection):
return None
# start Flask server
if __name__ == '__main__':
app.run_server(
debug=True,
host='0.0.0.0',
port=8050
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment