-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.py
202 lines (151 loc) · 6.53 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
# -*- coding: utf-8 -*-
import dash
from dash.dependencies import Input, Output
import dash_core_components as dcc
import dash_html_components as html
import os
import plotly.graph_objs as go
app = dash.Dash()
moody_logo = "https://raw.githubusercontent.com/cldougl/plot_images/add_r_img/moody.png"
# Describe the layout, or the UI, of the app
app.layout = html.Div([
html.Div([ # page 1
html.A([ 'Print PDF' ],
className="button no-print",
style=dict(position="absolute", top=-40, right=0)),
html.Div([
html.Div([
html.Img(src="https://raw.githubusercontent.com/cldougl/plot_images/add_r_img/moddys-img-chart2.png",
style={
'height': '400px',
'float': 'center',
'margin-bottom': '10',
'margin-top': '20'
},
),
]),
html.Div([
html.Div([
html.H1("Moody's Analytics",
style={'text-align': 'center'}),
html.H3('Growth Report',
style={'color':'#7F90AC',
'text-align':'center'}),
]),
]),
html.Div([
html.Img(src=moody_logo,
style={
'height': '100px',
'float': 'right',
'margin-top': '240',
'margin-bottom': '0'
},
),
])
], className = "subpage" ),
], className = "page" ),
html.Div([ # page 2
html.A([ 'Print PDF' ],
className="button no-print",
style=dict(position="absolute", top=-40, right=0)),
html.Div([
html.Div([
html.Div([
html.H1('Gross Domestic Product',
style={'color':'white',
'text-align':'center',
'margin-top': '300',
'font-weight': 'bold'}),
html.H3('by Industry Across Province',
style={'color':'white',
'text-align':'center'}),
]),
]),
html.Div([
html.Img(src=moody_logo,
style={'height': '100px',
'float': 'right',
'margin-top': '380',
'margin-bottom': '0'
}),
])
], className = "subpage", style={'background-color': '#009BFA'} ),
], className = "page" ),
html.Div([ # page 3
html.A([ 'Print PDF' ],
className="button no-print",
style=dict(position="absolute", top=-40, right=0)),
html.Div([ # subpage 1
# Row 1 (Header)
html.Div([
html.Iframe(src="https://plot.ly/~chelsea_lyn/15718.embed?share_key=g44NM5b1dJDe2HSSVHGEL2&modebar=false&link=false&autosize=true", \
seamless="seamless", style=dict(border=0), width="100%", height="900"),
]),
], className = "subpage" ),
], className = "page" ),
html.Div([ # page 4
html.A([ 'Print PDF' ],
className="button no-print",
style=dict(position="absolute", top=-40, right=0)),
html.Div([
html.Div([
html.Div([
html.H1("Industry Growth Rate",
style={'color':'white',
'text-align':'center',
'margin-top': '300',
'font-weight': 'bold'}),
html.H3('2014-2019',
style={'color':'white',
'text-align':'center'}),
]),
]),
html.Div([
html.Img(src=moody_logo,
style={
'height': '100px',
'float': 'right',
'margin-top': '380',
'margin-bottom': '0'
}),
])
], className = "subpage", style={'background-color': '#00C1B5'} ),
], className = "page" ),
html.Div([ # page 5
html.A([ 'Print PDF' ],
className="button no-print",
style=dict(position="absolute", top=-40, right=0)),
html.Div([ # subpage 1
# Row 1 (Header)
html.Iframe(src="https://plot.ly/~chelsea_lyn/15720.embed?share_key=KmGmw9bWZtvc6X4OBIL56X&modebar=false&link=false&autosize=true", \
seamless="seamless", style=dict(border=0), width="100%", height="800"),
html.Div([
html.Img(src=moody_logo,
style={
'height': '100px',
'float': 'right',
'margin-top': '0',
'margin-bottom': '0'
}),
])
], className = "subpage"),
], className = "page" ),
])
if 'DYNO' in os.environ:
app.scripts.append_script({
'external_url': 'https://cdn.rawgit.com/chriddyp/ca0d8f02a1659981a0ea7f013a378bbd/raw/e79f3f789517deec58f41251f7dbb6bee72c44ab/plotly_ga.js'
})
external_css = [ "https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css",
"https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css",
"//fonts.googleapis.com/css?family=Raleway:400,300,600",
"https://cdn.rawgit.com/cldougl/plot_images/add_r_img/moodys.css",
"https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"]
for css in external_css:
app.css.append_css({ "external_url": css })
external_js = [ "https://code.jquery.com/jquery-3.2.1.min.js",
"https://cdn.rawgit.com/plotly/dash-app-stylesheets/a3401de132a6d0b652ba11548736b1d1e80aa10d/dash-goldman-sachs-report-js.js" ]
for js in external_js:
app.scripts.append_script({ "external_url": js })
if __name__ == '__main__':
app.run_server(debug=True)