-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.py
27 lines (25 loc) · 821 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from dash import Dash,html
app = Dash(__name__)
app.layout = html.Div([
html.H1(children='Poverty And Equitey Database',
style={
'color':'blue',
'fontSize':'40px',
}),
html.H2('The World Bank'),
html.P('Key Facts:'),
html.Ul([
html.Li('Number of Economies: 170'),
html.Li('Temporal Coverage:1974 - 2019'),
html.Li('Update Frequency:Quarterly'),
html.Li('Last Updated: March 18, 2020'),
html.Li([
'Source:',
html.A('https://datacatalog.worldbank.org/dataset/poverty-and-equity-database',
href='https://datacatalog.worldbank.org/dataset/poverty-and-equity-database'
)
])
])
])
if __name__ == '__main__':
app.run_server(debug=True)