Created
February 20, 2019 02:10
-
-
Save bjpcjp/f90f2b2a520c39ad8a86b5bc29873335 to your computer and use it in GitHub Desktop.
$python app.py -- launches basic example of Dash web app framework. View results on localhost port# 8050.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import dash | |
import dash_core_components as dcc | |
import dash_html_components as html | |
external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css'] | |
app = dash.Dash(__name__, external_stylesheets=external_stylesheets) | |
app.layout = html.Div(children=[ | |
html.H1(children='Hello Dash'), | |
html.Div(children=''' | |
Dash: A web application framework for Python. | |
'''), | |
dcc.Graph( | |
id='example-graph', | |
figure={ | |
'data': [ | |
{'x': [1, 2, 3], 'y': [4, 1, 2], 'type': 'bar', 'name': 'SF'}, | |
{'x': [1, 2, 3], 'y': [2, 4, 5], 'type': 'bar', 'name': u'Montréal'}, | |
], | |
'layout': { | |
'title': 'Dash Data Visualization' | |
} | |
} | |
) | |
]) | |
if __name__ == '__main__': | |
app.run_server(debug=True) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment